| |
|
| java.lang.Object com.lowagie.text.pdf.PdfObject com.lowagie.text.pdf.PdfDictionary com.lowagie.text.pdf.PdfPage
PdfPage | public class PdfPage extends PdfDictionary (Code) | | PdfPage is the PDF Page-object.
A Page object is a dictionary whose keys describe a single page containing text,
graphics, and images. A Page onjects is a leaf of the Pages tree.
This object is described in the 'Portable Document Format Reference Manual version 1.3'
section 6.4 (page 73-81)
See Also: PdfPages |
INVERTEDPORTRAIT | final public static PdfNumber INVERTEDPORTRAIT(Code) | | value of the Rotate key for a page in INVERTEDPORTRAIT
|
LANDSCAPE | final public static PdfNumber LANDSCAPE(Code) | | value of the Rotate key for a page in LANDSCAPE
|
PORTRAIT | final public static PdfNumber PORTRAIT(Code) | | value of the Rotate key for a page in PORTRAIT
|
SEASCAPE | final public static PdfNumber SEASCAPE(Code) | | value of the Rotate key for a page in SEASCAPE
|
PdfPage | PdfPage(PdfRectangle mediaBox, HashMap boxSize, PdfDictionary resources, int rotate)(Code) | | Constructs a PdfPage .
Parameters: mediaBox - a value for the MediaBox key Parameters: resources - an indirect reference to a PdfResources -object Parameters: rotate - a value for the Rotate key |
PdfPage | PdfPage(PdfRectangle mediaBox, HashMap boxSize, PdfDictionary resources)(Code) | | Constructs a PdfPage .
Parameters: mediaBox - a value for the MediaBox key Parameters: resources - an indirect reference to a PdfResources -object |
add | void add(PdfIndirectReference contents)(Code) | | Adds an indirect reference pointing to a PdfContents -object.
Parameters: contents - an indirect reference to a PdfContents -object |
getMediaBox | PdfRectangle getMediaBox()(Code) | | Returns the MediaBox of this Page.
a PdfRectangle |
isParent | public boolean isParent()(Code) | | Checks if this page element is a tree of pages.
This method allways returns false .
false because this is a single page |
rotateMediaBox | PdfRectangle rotateMediaBox()(Code) | | Rotates the mediabox, but not the text in it.
a PdfRectangle |
|
|
|