Skip to content

Commit 71591a8

Browse files
committed
OpenPDF 1.3.39
1 parent 9107f1a commit 71591a8

File tree

6 files changed

+8
-41
lines changed

6 files changed

+8
-41
lines changed

README.md

+3-36
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ and bugreports to this GitHub repository.
1212

1313
[![Join the chat at https://gitter.im/LibrePDF/OpenPDF](https://badges.gitter.im/LibrePDF/OpenPDF.svg)](https://gitter.im/LibrePDF/OpenPDF)
1414

15-
## OpenPDF version 1.3.38 released 2024-01-17 ##
15+
## OpenPDF version 1.3.39 released 2024-01-17 ##
1616

17-
Get version 1.3.38 here - https://github.com/LibrePDF/OpenPDF/releases/tag/1.3.38
17+
Get version 1.3.39 here - https://github.com/LibrePDF/OpenPDF/releases/tag/1.3.39
1818

1919
- [Previous releases](https://github.com/LibrePDF/OpenPDF/releases)
2020

@@ -45,7 +45,7 @@ Add this to your pom.xml file to use the latest version of OpenPDF:
4545
<dependency>
4646
<groupId>com.github.librepdf</groupId>
4747
<artifactId>openpdf</artifactId>
48-
<version>1.3.38</version>
48+
<version>1.3.39</version>
4949
</dependency>
5050
```
5151

@@ -72,39 +72,6 @@ MPL license only.
7272
- [Tutorial](https://github.com/LibrePDF/OpenPDF/wiki/Tutorial) (wiki, work in progress)
7373
- [Migration from iText, TIFF support](https://github.com/LibrePDF/OpenPDF/wiki/Migrating-from-iText-2-and-4)
7474

75-
## Hello world example ##
76-
77-
```java
78-
public class HelloWorld {
79-
/**
80-
* Generates a PDF file with the text 'Hello World'
81-
*/
82-
public static void main(String[] args) {
83-
84-
// step 1: creation of a document-object
85-
Document document = new Document();
86-
try {
87-
// step 2:
88-
// we create a writer that listens to the document
89-
// and directs a PDF-stream to a file
90-
PdfWriter.getInstance(document, new FileOutputStream("HelloWorld.pdf"));
91-
92-
// step 3: we open the document
93-
document.open();
94-
// step 4: we add a paragraph to the document
95-
document.add(new Paragraph("Hello World"));
96-
} catch (DocumentException de) {
97-
System.err.println(de.getMessage());
98-
} catch (IOException ioe) {
99-
System.err.println(ioe.getMessage());
100-
}
101-
102-
// step 5: we close the document
103-
document.close();
104-
}
105-
}
106-
```
107-
10875
## Background ##
10976

11077
OpenPDF is open source software with a LGPL and MPL license. It is a fork of iText version 4, more

openpdf-fonts-extra/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.github.librepdf</groupId>
77
<artifactId>openpdf-parent</artifactId>
8-
<version>1.3.39-SNAPSHOT</version>
8+
<version>1.3.39</version>
99
</parent>
1010

1111
<artifactId>openpdf-fonts-extra</artifactId>

openpdf/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.github.librepdf</groupId>
77
<artifactId>openpdf-parent</artifactId>
8-
<version>1.3.39-SNAPSHOT</version>
8+
<version>1.3.39</version>
99
</parent>
1010

1111
<artifactId>openpdf</artifactId>

pdf-swing/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.github.librepdf</groupId>
77
<artifactId>openpdf-parent</artifactId>
8-
<version>1.3.39-SNAPSHOT</version>
8+
<version>1.3.39</version>
99
</parent>
1010

1111
<artifactId>pdf-swing</artifactId>

pdf-toolbox/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.github.librepdf</groupId>
77
<artifactId>openpdf-parent</artifactId>
8-
<version>1.3.39-SNAPSHOT</version>
8+
<version>1.3.39</version>
99
</parent>
1010

1111
<artifactId>pdf-toolbox</artifactId>

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>com.github.librepdf</groupId>
77
<artifactId>openpdf-parent</artifactId>
8-
<version>1.3.39-SNAPSHOT</version> <!-- artifact.version -->
8+
<version>1.3.39</version> <!-- artifact.version -->
99
<packaging>pom</packaging>
1010

1111
<!-- please run mvn tidy:pom once in a while -->

0 commit comments

Comments
 (0)