PJX

Uses of Class
com.etymon.pjx.PdfFormatException

Packages that use PdfFormatException
com.etymon.pjx The fundamental classes for creation and modification of PDF documents.  
com.etymon.pjx.stream Provides methods for encoding and decoding PDF streams.  
com.etymon.pjx.util Utility classes for performing common functions on PDF documents. 
 

Uses of PdfFormatException in com.etymon.pjx
 

Methods in com.etymon.pjx that throw PdfFormatException
 PdfObject PdfReader.readObject(long start, long end, boolean indirect, XrefTable xt)
          Reads a PDF object from the document.
 long PdfReader.readStartxref()
          Reads the startxref value from the PDF document.
 XrefTable PdfReader.readXrefTable(long startxref)
          Reads and compiles all cross-reference tables and trailer dictionaries from the PDF document beginning at a specified position.
 PdfObject PdfManager.getObject(int objectNumber)
          Retrieves the PDF object associated with a specified object number.
 PdfObject PdfManager.getObjectIndirect(PdfObject obj)
          Retrieves the PDF object referred to by a specified indirect reference object.
 long PdfManager.writeDocument(PdfWriter pdfWriter)
          Writes the document in PDF format, including all modifications made through this PdfManager.
 long PdfManager.writeDocument(PdfWriter pdfWriter, boolean useIncrementalUpdate)
          Writes the document in PDF format, including all modifications made through this PdfManager.
 PdfObject PdfObjectFilter.preFilter(PdfObject obj)
          Examines a PDF object and optionally returns a modified object.
 PdfObject PdfObjectFilter.postFilter(PdfObject obj)
          Examines a PDF object and optionally returns a modified object.
 PdfObject PdfObject.filter(PdfObjectFilter f)
          Filter this object recursively through PdfObjectFilter.
 

Constructors in com.etymon.pjx that throw PdfFormatException
XrefTable(long[] index, int[] generation, byte[] usage, PdfDictionary trailerDictionary)
          Constructs a cross-reference table from a set of arrays and a trailer dictionary.
PdfManager(PdfReader pdfReader)
          Constructs a PdfManager representing an existing PDF document.
 

Uses of PdfFormatException in com.etymon.pjx.stream
 

Methods in com.etymon.pjx.stream that throw PdfFormatException
 PdfStream PdfStreamFilter.encode(PdfStream stream)
          Encodes a stream using this filter's encoding method.
 PdfStream PdfStreamFilter.decode(PdfStream stream)
          Decodes a stream using this filter's decoding method.
 PdfStream PdfEncodeStream.compressFlate(PdfStream stream)
          Encodes a stream using the Flate compression method (based on zlib/deflate).
 PdfStream PdfDecodeStream.decode(PdfStream stream)
          Applies a sequence of stream filter decoders to the specified stream, based on the stream dictionary's Filter entry, in order to decode the stream.
 PdfStream PdfFlateFilter.encode(PdfStream stream)
           
 PdfStream PdfFlateFilter.decode(PdfStream stream)
           
 

Uses of PdfFormatException in com.etymon.pjx.util
 

Methods in com.etymon.pjx.util that throw PdfFormatException
 int PdfModifier.getPageCount()
          Deprecated. Use PdfPageTree.getNumberOfPages().
 PdfReference PdfModifier.getCatalogReference()
          Deprecated. Use PdfCatalog.getCatalog().
 PdfDictionary PdfModifier.getCatalog()
          Deprecated. Use PdfCatalog.getCatalog().
 void PdfModifier.setCatalog(PdfDictionary catalog)
          Deprecated. Use PdfManager.setObject(PdfObject, int).
 PdfReference PdfModifier.getPageTreeRootReference()
          Deprecated. Use PdfPageTree.getRoot().
 PdfDictionary PdfModifier.getPageTreeRoot()
          Deprecated. Use PdfPageTree.getRoot().
 void PdfModifier.setPageTreeRoot(PdfDictionary pageTreeRoot)
          Deprecated. Use PdfManager.setObject(PdfObject, int).
 PdfDictionary PdfModifier.pjUpdateFieldValue(PdfDictionary origField, PdfDictionary field, java.lang.String value)
          Deprecated.  
 PdfObject PdfRenumberOffset.renumber(PdfObject obj)
          Adds an offset to the object number in each PdfReference within the specified object.
 PdfObject PdfRenumberOffset.preFilter(PdfObject obj)
          This method is used by renumber(PdfObject) to filter indirect references and should not be called externally.
 PdfObject PdfRenumberOffset.postFilter(PdfObject obj)
          This method is used by renumber(PdfObject) to filter indirect references and should not be called externally.
 void PdfAppender.append()
          Performs the append operation.
static void PdfAppender.main(java.lang.String[] args)
          Appends multiple PDF documents together using this class.
 void AddImageSimple.addImage(java.io.File imageFile, int imageWidth, int imageHeight, PdfName imageName, PdfReference page, float positionX, float positionY, float scaleX, float scaleY, boolean background)
          Deprecated. Adds a specified JPEG image (contained in a file) to a page in the PDF document.
 void AddImageSimple.addImage(java.nio.ByteBuffer image, int imageWidth, int imageHeight, PdfName imageName, PdfReference page, float positionX, float positionY, float scaleX, float scaleY, boolean background)
          Deprecated. Adds a specified JPEG image (contained in a buffer) to a page in the PDF document.
 java.util.Set PdfPageObjects.getReferenced(PdfObject obj)
          Returns the set of all objects referenced by the specified page object that are required for the page to be extracted from the document.
 PdfObject PdfPageObjects.preFilter(PdfObject obj)
          This method is used by getReferenced(PdfObject) and should not be called externally.
 boolean PdfFieldTreeIterator.hasNext()
          Returns true if any more field objects remain.
 PdfReference PdfFieldTreeIterator.next()
          Returns an indirect reference to the next field object.
 PdfReference PdfCatalog.getCatalog()
          Retrieves an indirect reference to the document's catalog.
 java.lang.String PdfFieldTree.getFullyQualifiedName(PdfDictionary field)
          Determines the fully qualified field name of a specified field.
 PdfDictionary PdfFieldTree.inheritAttributes(PdfDictionary field)
          Adds inherited attributes to a specified field dictionary object.
 PdfFieldTreeIterator PdfFieldTree.getIterator()
          Returns an iterator over the terminal field objects in this document's field tree.
 PdfReference PdfPageTree.getPage(int pageNumber)
          Returns an indirect reference to a page object specified by page number.
 int PdfPageTree.getNumberOfPages()
          Returns the number of pages in the document.
 PdfReference PdfPageTree.getRoot()
          Returns an indirect reference to the root node of the document's page tree.
 PdfDictionary PdfPageTree.inheritAttributes(PdfDictionary page)
          Adds inherited attributes to a specified page dictionary object.
 java.util.Set PdfReferencedObjects.getReferenced(PdfObject obj)
          Returns the set of all objects referenced by the specified PDF object.
 PdfObject PdfReferencedObjects.preFilter(PdfObject obj)
          This method is used by getReferenced(PdfObject) and should not be called externally; however, it may be overridden in subclasses in order to pre-process the objects.
 PdfObject PdfReferencedObjects.postFilter(PdfObject obj)
          This method is used by getReferenced(PdfObject) and should not be called externally.
 

Constructors in com.etymon.pjx.util that throw PdfFormatException
PdfAppender(java.util.List managers, PdfWriter writer)
          The class is initialized to read a list of PDF documents (PdfManager objects) in order and to write the resultant document to a specified PdfWriter.
 


Copyright © 1998-2004 Etymon Systems, Inc.

The PDF data structures, operators, and specification are
Copyright © 1985-2004 Adobe Systems Incorporated.