Package | Description |
---|---|
com.qoppa.pdf |
General classes used by different objects throughout the library.
|
com.qoppa.pdf.dom |
Classes representing the PDF document object model.
|
com.qoppa.pdfPrint |
jPDFPrint main classes, used to print PDF documents.
|
com.qoppa.pdfProcess |
jPDFProcess main classes, used to manipulate PDF documents and pages.
|
Constructor and Description |
---|
PrintSettings(PrintSettings init)
Constructs a new PrintSettings object and initializes to init.
|
Modifier and Type | Method and Description |
---|---|
PrintSettings |
IPDFDocument.getPrintSettings()
Get the current PrintSettings object.
|
Modifier and Type | Method and Description |
---|---|
void |
IPDFDocument.print(PrintSettings printSettings)
Prints this PDF document.
|
void |
IPDFPage.printPage(Graphics2D g2d,
PageFormat pf,
PrintSettings printSettings)
Prints this page given a page format describing the printer's page and
a PrintSettings object.
|
void |
IPDFDocument.setPrintSettings(PrintSettings printSettings)
Set the PrintSettings to be used on the next printout.
|
Modifier and Type | Method and Description |
---|---|
PrintSettings |
PDFPrint.getPrintSettings()
Returns the PrintSettings that will be used when printing the document.
|
Modifier and Type | Method and Description |
---|---|
void |
PDFPrint.print(PrintSettings printSettings)
Prints this PDF document.
|
void |
PDFPrint.print(String printerName,
PrintSettings printSettings)
Prints this PDF document to the specified printer, by name.
|
static void |
PDFPrint.print(String fileName,
PrintSettings printSettings,
IPassword password)
Convenience method to print a PDF document from a file.
|
void |
PDFPrint.print(String printerName,
PrintSettings printSettings,
PrintRequestAttributeSet printAttrSet)
Prints this PDF document to the specified printer, by name and passes the attribute set to the printer job.
|
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.
|
void |
PDFPrint.printAsImage(String printerName,
PrintSettings printSettings,
PrintRequestAttributeSet printAttrSet)
Prints this document by first converting each page to an image and then sending the image to the printer.
|
void |
PDFPrint.printToDefaultPrinter(PrintSettings printSettings)
Prints the PDF document to the default printer.
|
void |
PDFPrint.setPrintSettings(PrintSettings printSettings)
Set the PrintSettings used when printing this document while using the class as a Printable
(rather than calling one of the print methods).
|
Modifier and Type | Method and Description |
---|---|
PrintSettings |
PDFDocument.getPrintSettings()
Get the current PrintSettings object.
|
Modifier and Type | Method and Description |
---|---|
void |
PDFDocument.print(PrintSettings printSettings)
Prints this PDF document.
|
void |
PDFDocument.print(String printerName,
PrintSettings printSettings)
Prints this PDF document to the specified printer, by name.
|
void |
PDFDocument.print(String printerName,
PrintSettings printSettings,
PrintRequestAttributeSet printAttrSet)
Prints this PDF document to the specified printer, by name and passes the print request attribute set to the printer job.
|
void |
PDFDocument.printAsImage(String printerName,
PrintSettings printSettings,
PrintRequestAttributeSet printAttrSet)
Prints this document by first converting each page to an image and then sending the image to the printer.
|
void |
PDFPage.printPage(Graphics2D g2d,
PageFormat pf,
PrintSettings printSettings)
Prints this page given a page format describing the printer's page and
a PrintSettings object.
|
void |
PDFDocument.setPrintSettings(PrintSettings printSettings)
Set the PrintSettings to be used on the next printout.
|