Package | Description |
---|---|
com.qoppa.pdf |
General classes used by different objects throughout the library.
|
com.qoppa.pdf.annotations |
Classes representing PDF annotations.
|
com.qoppa.pdf.dom |
Classes representing the PDF document object model.
|
com.qoppa.pdfProcess |
jPDFProcess main classes, used to manipulate PDF documents and pages.
|
Modifier and Type | Method and Description |
---|---|
void |
LayerListener.stateChanged(Layer l,
boolean visible)
This method gets called anytime a layer's visibility state has changed.
|
Modifier and Type | Method and Description |
---|---|
void |
Annotation.setLayer(Layer layer)
Sets the layer that this annotation belongs to.
|
Modifier and Type | Method and Description |
---|---|
Layer |
IPDFDocument.getLayer(int layerIndex)
Returns a particular PDF layer given its index.
|
Modifier and Type | Method and Description |
---|---|
Layer |
PDFDocument.addLayer(String name,
int initialState)
Creates and returns a PDF layer (Optional Content Group).
|
Layer |
PDFDocument.addLayer(String name,
int initialState,
boolean showInList)
Creates and returns a PDF layer (Optional Content Group).
|
Layer |
PDFDocument.getLayer(int layerIndex)
Returns a particular PDF layer given its index.
|
Modifier and Type | Method and Description |
---|---|
void |
PDFPage.appendPageContent(PDFPage srcPage,
double x,
double y,
double scaleX,
double scaleY,
Layer layer)
Adds the content of another page to this page.
|
void |
PDFPage.copyAnnotations(PDFPage srcPage,
Layer layer)
Use this method to copy annotations onto this page, from this or other
documents.
|
Graphics2D |
PDFPage.createGraphics(Layer layer)
Creates a graphics object that encapsulates a layer in a PDF document.
|
void |
PDFPage.prependPageContent(PDFPage srcPage,
double x,
double y,
double scaleX,
double scaleY,
Layer layer)
Prepend the contents of another page to this page.
|