Package | Description |
---|---|
com.qoppa.pdf |
General classes used by different objects throughout the library.
|
com.qoppa.pdfPrint |
jPDFPrint main classes, used to print 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.
|
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.
|