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.pdfAssemble |
jPDFAssemble main classes, used to assemble PDF documents.
|
com.qoppa.pdfProcess |
jPDFProcess main classes, used to manipulate PDF documents and pages.
|
Modifier and Type | Method and Description |
---|---|
Bookmark |
Bookmark.addChildBookmark(String title)
Add a child bookmark.
|
Bookmark |
Bookmark.getChildBookmarkAt(int childIndex)
Returns the child bookmark at the given index.
|
Bookmark |
Bookmark.getParentBookmark()
Returns the parent node / Bookmark.
|
Bookmark |
Bookmark.insertChildBookmark(String title,
int index)
Insert a child bookmark at the given index in the node's children.
|
Modifier and Type | Method and Description |
---|---|
Vector<Bookmark> |
Bookmark.getChildren()
Returns the children of the node as a Vector.
|
Modifier and Type | Method and Description |
---|---|
int |
Bookmark.getBookmarkIndex(Bookmark bookmark)
Returns the index of the bookmark node in the node's children.
|
Modifier and Type | Method and Description |
---|---|
Bookmark |
IPDFDocument.getRootBookmark()
Returns the bookmark tree for this document.
|
Modifier and Type | Method and Description |
---|---|
Bookmark |
PDFAssemble.createBookmark(Bookmark parent,
int pageNum)
Creates a Bookmark with a GoToPage action, and Add it as a child to the parent Bookmark parameter
|
Bookmark |
PDFAssemble.createBookmark(Bookmark parent,
int pageNum,
int zoomMode)
Creates a Bookmark with a GoToPage action with a zoom mode, and Add it as a child to the parent Bookmark parameter
|
Bookmark |
PDFAssemble.createBookmark(Bookmark parent,
int pageNum,
int x,
int y,
double scale)
Creates a Bookmark with a GoToPage action that uses x and y coordinates and a zoom scale.
|
Bookmark |
PDFAssemble.createRootBookmark()
Creates a new root bookmark and saves it in the document catalog.
|
Bookmark |
PDFAssemble.getRootBookmark()
Returns the 'root' bookmark.
|
Modifier and Type | Method and Description |
---|---|
void |
PDFAssemble.addGoToPage(Bookmark bookmark,
int pageNum)
Adds a GoToPage action to the Bookmark Parameter.
|
void |
PDFAssemble.addGoToPage(Bookmark bookmark,
int pageNum,
int zoomMode)
Adds a GoToPage action to the Bookmark Parameter with a zoom mode.
|
void |
PDFAssemble.addGoToPage(Bookmark bookmark,
int pageNum,
int x,
int y,
double scale)
Adds a GoToPage action to the Bookmark Parameter that uses x and y coordinates and a zoom scale.
|
Bookmark |
PDFAssemble.createBookmark(Bookmark parent,
int pageNum)
Creates a Bookmark with a GoToPage action, and Add it as a child to the parent Bookmark parameter
|
Bookmark |
PDFAssemble.createBookmark(Bookmark parent,
int pageNum,
int zoomMode)
Creates a Bookmark with a GoToPage action with a zoom mode, and Add it as a child to the parent Bookmark parameter
|
Bookmark |
PDFAssemble.createBookmark(Bookmark parent,
int pageNum,
int x,
int y,
double scale)
Creates a Bookmark with a GoToPage action that uses x and y coordinates and a zoom scale.
|
Modifier and Type | Method and Description |
---|---|
Bookmark |
PDFDocument.createRootBookmark()
Creates a new root bookmark and saves it in the document catalog.
|
Bookmark |
PDFDocument.getRootBookmark()
Returns the 'root' bookmark.
|