Uses of Class
com.qoppa.pdf.PDFException

Packages that use PDFException
com.qoppa.pdf General classes used by different objects throughout the library. 
com.qoppa.pdf.errors Classes related to error handling. 
com.qoppa.pdfImages Main jPDFImages package. 
 

Uses of PDFException in com.qoppa.pdf
 

Subclasses of PDFException in com.qoppa.pdf
 class PDFPermissionException
          Exception thrown when there is any permission error.
 

Methods in com.qoppa.pdf that throw PDFException
 void IEmbeddedFile.saveFile(File outFile)
          Saves the content of the embedded file to the given File.
 void IEmbeddedFile.open(String tempFileName)
          Open the embedded file.
 byte[] IEmbeddedFile.getDeflatedContents()
          Get the content of the embedded file.
 int IEmbeddedFile.getSize()
          Get the size of the file content in bytes.
 void IEmbeddedFile.write(OutputStream outStream)
          Write the file content to an output stream.
static DocumentInfo DocumentInfo.getDocumentInfo(String fileName, IPassword passwords)
          Static method to get the document information from a document in a file.
static DocumentInfo DocumentInfo.getDocumentInfo(InputStream inStream, IPassword password)
          Static method to get the document information from a document from an InputStream.
static DocumentInfo DocumentInfo.getDocumentInfo(URL url, IPassword password)
          Static method to get the document information from a document from a URL.
 void Bookmark.addAction(Action action)
          Adds an Action to this Bookmark
 Bookmark Bookmark.addChildBookmark(String title)
          Add a child bookmark.
 Bookmark Bookmark.insertChildBookmark(String title, int index)
          Insert a child bookmark at the given index in the node's children.
 void Bookmark.removeChildBookmark(int index)
          Removes a child bookmark from the bookmark
 

Constructors in com.qoppa.pdf that throw PDFException
SigningInformation(String pkcs12File, String ksPWD, String entryAlias, String aliasPWD)
           
SigningInformation(KeyStore ks, String entryAlias, String aliasPWD)
           
 

Uses of PDFException in com.qoppa.pdf.errors
 

Methods in com.qoppa.pdf.errors that throw PDFException
static void PDFErrorHandling.checkForErrors_UsePDFException(String errorMsg)
          This is a convenience method that gets called by the library after a rendering.
 

Uses of PDFException in com.qoppa.pdfImages
 

Methods in com.qoppa.pdfImages that throw PDFException
 BufferedImage PDFDocument.getPageImage(int pageIndex, int resDPI)
          Returns a BufferedImage containing a rendering of the page at the given resolution in DPI.
 BufferedImage PDFDocument.getPageSubImage(int pageIndex, Rectangle2D pageArea, int dpi)
          Returns a BufferedImage containing a rendering of part of the page at a given scale.
 void PDFDocument.savePageAsPNG(int pageIndex, OutputStream outStream, int dpi)
          Save the rendered image of the page to the given OutputStream in PNG format.
 void PDFDocument.savePageAsPNG(int pageIndex, String fileName, int dpi)
          Save the rendered image of the page to the given OutputStream in PNG format.
 void PDFDocument.savePageAsJPEG(int pageIndex, OutputStream outStream, int resDPI, float quality)
          Save the rendered image of the page to the given OutputStream in JPEG format.
 void PDFDocument.savePageAsJPEG(int pageIndex, String fileName, int resDPI, float quality)
          Save the rendered image of the page to the given file in JPEG format.
 void PDFDocument.savePageAsTIFF(int pageIndex, OutputStream outStream, double resDPI, String tiffCompression)
          Save the rendered image of the page to the given OutputStream in TIFF format.
 void PDFDocument.savePageAsTIFF(int pageIndex, String fileName, double resDPI, String tiffCompression)
          Save the rendered image of the page to the given file in TIFF format.
 void PDFDocument.savePageAsTIFF(int pageIndex, String fileName, TIFFOptions options)
          Render a page to an image and save it in TIFF format.
 void PDFDocument.savePageAsTIFF(int pageIndex, OutputStream outStream, TIFFOptions options)
          Render a page to an image and save it in TIFF format.
 void PDFDocument.saveDocumentAsTIFF(OutputStream outStream, double resDPI, String tiffCompression)
          Save the entire document as a multi-page TIFF image to the given OutputStream.
 void PDFDocument.saveDocumentAsTIFF(String fileName, double resDPI, String tiffCompression)
          Save the entire document as a multi-page TIFF image to the given file.
 void PDFDocument.saveDocumentAsTIFF(String fileName, TIFFOptions options)
          Save the entire document as a multi-page TIFF image to the given file.
 void PDFDocument.saveDocumentAsTIFF(OutputStream outStream, TIFFOptions options)
          Save the entire document as a multi-page TIFF image to an OutputStream.
 void PDFDocument.appendTIFFAsPages(String tiffFileName)
          Appends the pages in a TIFF file to the end of this document.
 void PDFDocument.appendTIFFAsPages(InputStream inStream)
          Appends the pages in a TIFF image from an input stream to the end of this document.
 void PDFDocument.appendJPEGAsPage(String jpegFileName)
          Creates a new page in the PDF document and adds the JPEG file to it.
 void PDFDocument.appendJPEGAsPage(String jpegFileName, int dpi)
          Creates a new page in the PDF document and adds the JPEG file to it.
 void PDFDocument.appendPNGAsPage(String pngFileName)
          Creates a new page in the PDF document and adds the PNG file to it.
 void PDFDocument.saveDocument(OutputStream outStream)
          Saves this document to an output stream.
 void PDFDocument.saveDocument(String fileName)
          Saves this document to a file.
 

Constructors in com.qoppa.pdfImages that throw PDFException
PDFDocument()
          Creates a blank PDFDocument object.
PDFDocument(String fileName, IPassword password)
          Loads a PDF document from a file.
PDFDocument(InputStream inStream, IPassword password)
          Loads a PDF document from an InputStream.
PDFDocument(URL url, IPassword password)
          Loads a PDF document from a URL.