gnu.jpdf |
|
Java Source File Name | Type | Comment |
BoundingBox.java | Class | This class simplifies the placement of Strings within
a canvas area where the placement of objects is absolute
A BoundingBox is just a Rectangle that knows how to
find the coordinates for a String based on the desired alignment and
FontMetrics . |
PDFAnnot.java | Class | This class defines an annotation (commonly known as a Bookmark).
author: Eric Z. |
PDFBorder.java | Class | A border around an annotation
author: Peter T Mount, http://www.retep.org.uk/pdf/ author: Eric Z. |
PDFCatalog.java | Class | This class implements the PDF Catalog,
also known as the root node
author: Peter T. |
PDFDocument.java | Class | This class is the base of the PDF generator. |
PDFFont.java | Class | This class defines a font within a PDF document.
author: Peter T Mount,http://www.retep.org.uk/pdf/ author: Eric Z. |
PDFGraphics.java | Class | This class is our implementation of AWT's Graphics class. |
PDFImage.java | Class | This implements the Image XObject. |
PDFInfo.java | Class | This class stores details of the author, the PDF generator etc.
The values are accessible via the PDFDocument class.
author: Peter T. |
PDFJob.java | Class | This class extends awt's PrintJob, to provide a simple method of writing
PDF documents.
You can use this with any code that uses Java's printing mechanism. |
PDFObject.java | Class | This is the base class for all Objects that form the PDF document.
author: Peter T Mount, http://www.retep.org.uk/pdf/ author: Eric Z. |
PDFOutline.java | Class | This class manages the documents outlines (also known as bookmarks).
author: Peter T Mount http://www.retep.org.uk/pdf/ author: Eric Z. |
PDFOutput.java | Class | This class is used to write a PDF document. |
PDFPage.java | Class | This class defines a single page within a document. |
PDFPageList.java | Class | This object contains the document's pages.
author: Peter T. |
PDFStream.java | Class | This class implements a PDF stream object. |
PDFStringHelper.java | Class | String manipulation methods
author: Eric Z. |
PDFTest.java | Class | The purpose of this class is to test all functionality of the
gnu.jpdf package and serve as a demonstration of how to use the
library.
This library produces pdf format files and can display and print
them in a java Graphics context by extending java.awt.Graphics and
java.awt.PrintJob. |
PDFXref.java | Class | This class is used to hold the xref information in the PDF
Trailer block.
Basically, each object has an id, and an offset in the end file.
See the Adobe PDF Manual for more information. |
StringTooLongException.java | Class | This exception is thrown from
gnu.jpdf.BoundingBox if the
string won't fit into the box
author: Eric Z. |