Modifier and Type | Method and Description |
---|---|
PDFPage |
PDFDocument.getPage(int page)
This returns a specific page
|
PDFPage |
PDFPageList.getPage(int page)
This returns a specific page.
|
Modifier and Type | Method and Description |
---|---|
void |
PDFPageList.add(PDFPage page)
This adds a page to the document.
|
PDFOutline |
PDFOutline.add(String title,
PDFPage dest)
This method creates an outline, and attaches it to this one.
|
PDFOutline |
PDFOutline.add(String title,
PDFPage dest,
int x,
int y,
int w,
int h)
This method creates an outline, and attaches it to this one.
|
Constructor and Description |
---|
PDFCanvas(PDFPage page)
Construct a canvas for the specified page size
|
PDFOutline(String title,
PDFPage dest)
Constructs a PDF Outline object.
|
PDFOutline(String title,
PDFPage dest,
int l,
int b,
int r,
int t)
Constructs a PDF Outline object.
|