Package | Description |
---|---|
com.qoppa.pdfAssemble |
jPDFAssemble main classes, used to assemble PDF documents.
|
Modifier and Type | Method and Description |
---|---|
PDFAssemble |
PDFAssemble.extractPages(int startIndex,
int endIndex,
OutputStream outStream)
Creates and saves a new PDF document that contains a range of pages from this document.
|
PDFAssemble |
PDFAssemble.extractPages(int startIndex,
int endIndex,
String outputFile)
Creates and saves a new PDF document that contains a range of pages from this document.
|
Modifier and Type | Method and Description |
---|---|
void |
PDFAssemble.appendDocument(PDFAssemble appendDoc)
Appends a PDF document to this document.
|
void |
PDFAssemble.appendPage(PDFAssemble source,
int pageIndex)
Appends a page to this document.
|
void |
PDFAssemble.insertPage(PDFAssemble sourceDoc,
int srcPageIndex,
int dstPageIndex)
Inserts a page into this document at the given index.
|