com.lowagie.text.pdf
public class PdfPages extends Object
PdfPages
is the PDF Pages-object.
The Pages of a document are accessible through a tree of nodes known as the Pages tree.
This tree defines the ordering of the pages in the document.
This object is described in the 'Portable Document Format Reference Manual version 1.3'
section 6.3 (page 71-73)
See Also: PdfPage
Field Summary | |
---|---|
int | leafSize |
ArrayList | pages |
ArrayList | parents |
PdfIndirectReference | topParent |
PdfWriter | writer |
Constructor Summary | |
---|---|
PdfPages(PdfWriter writer)
Constructs a PdfPages -object. |
Method Summary | |
---|---|
void | addPage(PdfDictionary page) |
void | addPage(PdfIndirectReference page) |
PdfIndirectReference | addPageRef(PdfIndirectReference pageRef) |
PdfIndirectReference | getTopParent() |
int | reorderPages(int[] order) |
void | setLinearMode(PdfIndirectReference topParent) |
PdfIndirectReference | writePageTree() |
PdfPages
-object.