Skip to content

Commit

Permalink
Moved org.xhtmlrenderer.simple.PDFRenderer to `org.xhtmlrenderer.pd…
Browse files Browse the repository at this point in the history
…f.PDFRenderer`

Changed to fix issue flyingsaucerproject#349
  • Loading branch information
aaron.verachtert committed Jul 19, 2024
1 parent f4ff2a2 commit a75ece0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ build path, as well as the SWT JAR for your OS.
Other notable entry points include:

* `org.xhtmlrenderer.simple.XHTMLPanel`
* `org.xhtmlrenderer.simple.PDFRenderer`
* `org.xhtmlrenderer.pdf.PDFRenderer`
* `org.xhtmlrenderer.simple.ImageRenderer`


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
*
* <p>Image width must always be supplied; height is determined automatically.</p>
*
* @see org.xhtmlrenderer.simple.PDFRenderer
* @see org.xhtmlrenderer.pdf.PDFRenderer
* @author Pete Brant
* @author Patrick Wright
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
package org.xhtmlrenderer.simple;
package org.xhtmlrenderer.pdf;

import com.lowagie.text.DocumentException;
import com.lowagie.text.pdf.PdfWriter;
import org.xhtmlrenderer.pdf.ITextRenderer;

import javax.annotation.Nullable;
import javax.annotation.ParametersAreNonnullByDefault;
Expand All @@ -25,7 +24,7 @@
* the URL or file location as first parameter, and PDF path as second
* parameter:
* <pre>
* java -cp %classpath% org.xhtmlrenderer.simple.PDFRenderer <url> <pdf>
* java -cp %classpath% org.xhtmlrenderer.pdf.PDFRenderer <url> <pdf>
* </pre>
*
* @author Pete Brant
Expand Down
2 changes: 1 addition & 1 deletion www/guide.bat
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
del users-guide-r7.pdf
java -cp ..\..\build\classes;..\..\lib\cssparser-0-9-4-fs.jar;..\..\lib\itext-paulo-155.jar org.xhtmlrenderer.simple.PDFRenderer d:\java\javanet\xhtmlrenderer\www\r7\users-guide-r7.html users-guide-r7.pdf
java -cp ..\..\build\classes;..\..\lib\cssparser-0-9-4-fs.jar;..\..\lib\itext-paulo-155.jar org.xhtmlrenderer.pdf.PDFRenderer d:\java\javanet\xhtmlrenderer\www\r7\users-guide-r7.html users-guide-r7.pdf
start users-guide-r7.pdf

0 comments on commit a75ece0

Please sign in to comment.