Package | Description |
---|---|
com.qoppa.pdf |
General classes used by different objects throughout the library.
|
com.qoppa.pdfAssemble |
jPDFAssemble main classes, used to assemble PDF documents.
|
com.qoppa.pdfFields |
jPDFFields main classes, used to work with PDF interactive forms and fields.
|
com.qoppa.pdfImages |
jPDFImages main classes, used to convert PDF documents to images and images to PDF documents.
|
com.qoppa.pdfPrint |
jPDFPrint main classes, used to print PDF documents.
|
com.qoppa.pdfProcess |
jPDFProcess main classes, used to manipulate PDF documents and pages.
|
com.qoppa.pdfSecure |
jPDFSecure main classes, used encrypt and digitally sign PDF documents.
|
com.qoppa.pdfText |
jPDFText main classes, used to extract text content from PDF documents.
|
Modifier and Type | Class and Description |
---|---|
class |
PDFPassword
Implementation of the IPassword interface that can hold either a single password or a
list of passwords.
|
Modifier and Type | Method and Description |
---|---|
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(String fileName,
IPassword passwords)
Static method to get the document information from a document in a file.
|
static DocumentInfo |
DocumentInfo.getDocumentInfo(URL url,
IPassword password)
Static method to get the document information from a document from a URL.
|
Constructor and Description |
---|
PDFAssemble(InputStream inStream,
IPassword password)
Loads a PDF document from an InputStream.
|
PDFAssemble(String fileName,
IPassword password)
Loads a PDF document from a file.
|
PDFAssemble(URL url,
IPassword password)
Loads a PDF document from a URL.
|
Constructor and Description |
---|
PDFFields(InputStream inStream,
IPassword password)
Loads a PDF document from an InputStream.
|
PDFFields(String fileName,
IPassword password)
Loads a PDF document from a file.
|
PDFFields(URL url,
IPassword password)
Loads a PDF document from a URL.
|
Constructor and Description |
---|
PDFImages(InputStream inStream,
IPassword password)
Loads a PDF document from an InputStream.
|
PDFImages(PDFSource source,
IPassword password)
Loads a PDF document from a PDFSource object.
|
PDFImages(String fileName,
IPassword password)
Loads a PDF document from a file.
|
PDFImages(URL url,
IPassword password)
Loads a PDF document from a URL.
|
Modifier and Type | Method and Description |
---|---|
static void |
PDFPrint.print(String fileName,
PrintSettings printSettings,
IPassword password)
Convenience method to print a PDF document from a file.
|
static void |
PDFPrint.print(String fileName,
String printerName,
PrintSettings printSettings,
IPassword password)
Convenience method to print a PDF document from a file to a named printer.
|
Constructor and Description |
---|
PDFPrint(InputStream inStream,
IPassword password)
Loads a PDF document from an InputStream.
|
PDFPrint(String fileName,
IPassword password)
Loads a PDF document from a file.
|
PDFPrint(URL url,
IPassword password)
Loads a PDF document from a URL.
|
Constructor and Description |
---|
PDFDocument(InputStream inStream,
IPassword password)
Creates a PDFDocument object from a PDF InputStream.
|
PDFDocument(PDFSource source,
IPassword password)
Create a PDFDocument object using a PDFSource interface.
|
PDFDocument(String fileName,
IPassword password)
Loads a PDF document from a file.
|
PDFDocument(URL url,
IPassword password)
Loads a PDF document from a URL.
|
Constructor and Description |
---|
PDFSecure(InputStream inStream,
IPassword password)
Loads a PDF document from an InputStream.
|
PDFSecure(String fileName,
IPassword password)
Loads a PDF document from a file.
|
PDFSecure(URL url,
IPassword password)
Loads a PDF document from a URL.
|
Modifier and Type | Method and Description |
---|---|
static DocumentInfo |
PDFText.getDocumentInfo(InputStream inStream,
IPassword password)
Returns a DocumentInfo object containing the information
section of a PDF document (author, title, etc.)
|
Constructor and Description |
---|
PDFText(InputStream inStream,
IPassword password)
Creates a PDFText object from a PDF InputStream.
|
PDFText(String fileName,
IPassword password)
Loads a PDFText object from a file.
|
PDFText(URL url,
IPassword password)
Loads a PDFText object from a URL.
|