- java.lang.Object
-
- com.itextpdf.text.pdf.PdfObject
-
- com.itextpdf.text.pdf.PdfDictionary
-
- com.itextpdf.text.pdf.PdfPage
-
public class PdfPage extends PdfDictionary
PdfPageis the PDF Page-object.A Page object is a dictionary whose keys describe a single page containing text, graphics, and images. A Page object 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
-
-
Field Summary
Fields Modifier and Type Field Description static PdfNumberINVERTEDPORTRAITvalue of the Rotate key for a page in INVERTEDPORTRAITstatic PdfNumberLANDSCAPEvalue of the Rotate key for a page in LANDSCAPEstatic PdfNumberPORTRAITvalue of the Rotate key for a page in PORTRAITstatic PdfNumberSEASCAPEvalue of the Rotate key for a page in SEASCAPE
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanisParent()Checks if this page element is a tree of pages.-
Methods inherited from class com.itextpdf.text.pdf.PdfDictionary
contains, get, getAsArray, getAsBoolean, getAsDict, getAsIndirectObject, getAsName, getAsNumber, getAsStream, getAsString, getDirectObject, getKeys, isCatalog, isFont, isOutlineTree, isPage, isPages, merge, mergeDifferent, put, putAll, putEx, remove, size, toPdf, toString
-
Methods inherited from class com.itextpdf.text.pdf.PdfObject
canBeInObjStm, getBytes, getIndRef, isArray, isBoolean, isDictionary, isIndirect, isName, isNull, isNumber, isStream, isString, length, setContent, setIndRef, type
-
-
-
-
Field Detail
-
PORTRAIT
public static final PdfNumber PORTRAIT
value of the Rotate key for a page in PORTRAIT
-
LANDSCAPE
public static final PdfNumber LANDSCAPE
value of the Rotate key for a page in LANDSCAPE
-
INVERTEDPORTRAIT
public static final PdfNumber INVERTEDPORTRAIT
value of the Rotate key for a page in INVERTEDPORTRAIT
-
SEASCAPE
public static final PdfNumber SEASCAPE
value of the Rotate key for a page in SEASCAPE
-
-