Class PdfPage
-
Constructor Summary
ModifierConstructorDescriptionprotected
PdfPage
(PdfDictionary pdfObject) protected
PdfPage
(PdfDocument pdfDocument) protected
PdfPage
(PdfDocument pdfDocument, PageSize pageSize) -
Method Summary
Modifier and TypeMethodDescriptionaddAnnotation
(int index, PdfAnnotation annotation, boolean tagAnnotation) Adds specifiedPdfAnnotation
to specified index in annotations array with or without autotagging.addAnnotation
(PdfAnnotation annotation) Adds specified annotation to the end of annotations array and tagged it.void
Adds file associated with PDF page and identifies the relationship between them.void
addAssociatedFile
(String description, PdfFileSpec fs) Adds file associated with PDF page and identifies the relationship between them.addOutputIntent
(PdfOutputIntent outputIntent) AddsPdfOutputIntent
that shall specify the colour characteristics of output devices on which the page might be rendered.boolean
containsAnnotation
(PdfAnnotation annotation) Checks if page contains the specified annotation.copyAsFormXObject
(PdfDocument toDocument) Copies page as FormXObject to the specified document.copyTo
(PdfDocument toDocument) Copies page to the specified document.copyTo
(PdfDocument toDocument, IPdfPageExtraCopier copier) Copies page to the specified document.copyTo
(PdfDocument toDocument, IPdfPageExtraCopier copier, boolean addPageToDocument, int pageInsertIndex) Copies page and adds it to the specified document to the end or by index if the corresponding parameter is true.void
flush()
Flushes page dictionary, its content streams, annotations and thumb image.void
flush
(boolean flushResourcesContentStreams) Flushes page dictionary, its content streams, annotations and thumb image.Gets array of annotation dictionaries that shall contain indirect references to all annotations associated with the page.int
Gets the number ofPdfAnnotation
associated with this page.Gets theRectangle
object specified by page's ArtBox, that define the extent of the page’s meaningful content (including potential white space) as intended by the page’s creator.getAssociatedFiles
(boolean create) Returns files associated with PDF page.Gets theRectangle
object specified by page's BleedBox, that define the region to which the contents of the page shall be clipped when output in a production environment.byte[]
Get decoded bytes for the whole page content.getContentStream
(int index) Gets the content stream at specified 0-based index in the Contents objectPdfArray
.int
Gets the size of Contents objectPdfArray
.Gets theRectangle
specified by page's CropBox, that defines the visible region of default user space.Gets thePdfDocument
that owns that page, ornull
if such document isn't exist.GetsRectangle
object specified by page's Media Box, that defines the boundaries of the physical medium on which the page shall be displayed or printedint
Calculates and returns the next available for this page's content stream MCID reference.getOutlines
(boolean updateOutlines) This method gets outlines of a current pageGets page size, defined by media box object.Gets page size, considering page rotation.Gets thePdfResources
wrapper object for this page resources.int
Gets the number of degrees by which the page shall be rotated clockwise when displayed or printed.byte[]
getStreamBytes
(int index) Gets decoded bytes of a certain stream of a page content.int
Gets the key of the page’s entry in the structural parent tree.Gets a name specifying the tab order that shall be used for annotations on the page.Sets a stream object that shall define the page’s thumbnail image.Gets theRectangle
object specified by page's TrimBox object, that define the intended dimensions of the finished page after trimming.Gets the XMP Metadata object.boolean
boolean
This flag is meaningful for the case, when page rotation is applied and ignorePageRotationForContent is set to true.protected boolean
Defines if the object behind this wrapper must be an indirect object in the resultant document.Helper method that associates specified value with the specified key in the underlyingPdfDictionary
.Helper method that removes the value associated with the specified key from the underlyingPdfDictionary
.removeAnnotation
(PdfAnnotation annotation) Removes an annotation from the page.removeAnnotation
(PdfAnnotation annotation, boolean rememberTagPointer) Removes an annotation from the page.setAdditionalAction
(PdfName key, PdfAction action) Helper method to add an additional action to this page.Sets the ArtBox object, that define the extent of the page’s meaningful content (including potential white space) as intended by the page’s creator.setBleedBox
(Rectangle rectangle) Sets the BleedBox object, that defines the region to which the contents of the page shall be clipped when output in a production environment.setCropBox
(Rectangle rectangle) Sets the CropBox object, that defines the visible region of default user space.setIgnorePageRotationForContent
(boolean ignorePageRotationForContent) If true - defines that in case the page has a rotation, then new content will be automatically rotated in the opposite direction.setMediaBox
(Rectangle rectangle) Sets the Media Box object, that defines the boundaries of the physical medium on which the page shall be displayed or printed.setPageLabel
(PageLabelNumberingStyle numberingStyle, String labelPrefix) This method adds or replaces a page label.setPageLabel
(PageLabelNumberingStyle numberingStyle, String labelPrefix, int firstPage) This method adds or replaces a page label.void
NOTE: For internal usage! Use this method only if you know what you are doing.setResources
(PdfResources pdfResources) SetsPdfResources
object.setRotation
(int degAngle) Sets the page rotation.setTabOrder
(PdfName tabOrder) Sets a name specifying the tab order that shall be used for annotations on the page.setThumbnailImage
(PdfImageXObject thumb) Sets a stream object that shall define the page’s thumbnail image.setTrimBox
(Rectangle rectangle) Sets the TrimBox object, that define the intended dimensions of the finished page after trimming.setXmpMetadata
(byte[] xmpMetadata) Sets the XMP Metadata.setXmpMetadata
(XMPMeta xmpMeta) Serializes XMP Metadata to byte array and sets it.setXmpMetadata
(XMPMeta xmpMeta, SerializeOptions serializeOptions) Serializes XMP Metadata to byte array and sets it.Methods inherited from class com.itextpdf.kernel.pdf.PdfObjectWrapper
ensureObjectIsAddedToDocument, ensureUnderlyingObjectHasIndirectReference, getPdfObject, isFlushed, makeIndirect, makeIndirect, markObjectAsIndirect, setForbidRelease, setModified, setPdfObject, unsetForbidRelease
-
Constructor Details
-
PdfPage
-
PdfPage
-
PdfPage
-
-
Method Details
-
getPageSize
Gets page size, defined by media box object. This method doesn't take page rotation into account.- Returns:
-
Rectangle
that specify page size.
-
getPageSizeWithRotation
Gets page size, considering page rotation.- Returns:
-
Rectangle
that specify size of rotated page.
-
getRotation
public int getRotation()Gets the number of degrees by which the page shall be rotated clockwise when displayed or printed. Shall be a multiple of 90.- Returns:
-
int
number of degrees. Default value: 0
-
setRotation
Sets the page rotation.- Parameters:
-
degAngle
- theint
number of degrees by which the page shall be rotated clockwise when displayed or printed. Shall be a multiple of 90. - Returns:
-
this
PdfPage
instance.
-
getContentStream
Gets the content stream at specified 0-based index in the Contents objectPdfArray
. The situation when Contents object is aPdfStream
is treated like a one element array.- Parameters:
-
index
- theint
index of returnedPdfStream
. - Returns:
-
PdfStream
object at specified index; will return null in case page dictionary doesn't adhere to the specification, meaning that the document is an invalid PDF. - Throws:
-
IndexOutOfBoundsException
- if the index is out of range
-
getContentStreamCount
public int getContentStreamCount()Gets the size of Contents objectPdfArray
. The situation when Contents object is aPdfStream
is treated like a one element array.- Returns:
-
the
int
size of Contents object, or 1 if Contents object is aPdfStream
.
-
getFirstContentStream
- Returns:
-
first
PdfStream
in Contents object, ornull
if Contents is empty.
-
getLastContentStream
- Returns:
-
first
PdfStream
in Contents object, ornull
if Contents is empty.
-
newContentStreamBefore
Creates newPdfStream
object and puts it at the beginning of Contents array (if Contents object isPdfStream
it will be replaced with one-element array).- Returns:
-
Created
PdfStream
object.
-
newContentStreamAfter
Creates newPdfStream
object and puts it at the end of Contents array (if Contents object isPdfStream
it will be replaced with one-element array).- Returns:
-
Created
PdfStream
object.
-
getResources
Gets thePdfResources
wrapper object for this page resources. If page doesn't have resource object, then it will be inherited from page's parents. If neither parents nor page has the resource object, then the new one is created and added to page dictionary.
NOTE: If you'll try to modify the inherited resources, then the new resources object will be created, so you won't change the parent's resources. This new object under the wrapper will be added to page dictionary onflush()
, or you can add it manually with this line, if needed:
getPdfObject().put(PdfName.Resources, getResources().getPdfObject());
- Returns:
-
PdfResources
wrapper of the page.
-
setResources
SetsPdfResources
object.- Parameters:
-
pdfResources
-PdfResources
to set. - Returns:
-
this
PdfPage
instance.
-
setXmpMetadata
Sets the XMP Metadata.- Parameters:
-
xmpMetadata
- thebyte[]
of XMP Metadata to set. - Returns:
-
this
PdfPage
instance. - Throws:
-
IOException
- in case of writing error.
-
setXmpMetadata
public PdfPage setXmpMetadata(XMPMeta xmpMeta, SerializeOptions serializeOptions) throws XMPException, IOException Serializes XMP Metadata to byte array and sets it.- Parameters:
-
xmpMeta
- theXMPMeta
object to set. -
serializeOptions
- theSerializeOptions
used while serialization. - Returns:
-
this
PdfPage
instance. - Throws:
-
XMPException
- in case of XMP Metadata serialization error. -
IOException
- in case of writing error.
-
setXmpMetadata
Serializes XMP Metadata to byte array and sets it. Uses padding equals to 2000.- Parameters:
-
xmpMeta
- theXMPMeta
object to set. - Returns:
-
this
PdfPage
instance. - Throws:
-
XMPException
- in case of XMP Metadata serialization error. -
IOException
- in case of writing error.
-
getXmpMetadata
Gets the XMP Metadata object.- Returns:
-
PdfStream
object, that represent XMP Metadata.
-
copyTo
Copies page to the specified document.
NOTE: Works only for pages from the document opened in reading mode, otherwise an exception is thrown.- Parameters:
-
toDocument
- a document to copy page to. - Returns:
-
copied
PdfPage
.
-
copyTo
Copies page to the specified document.
NOTE: Works only for pages from the document opened in reading mode, otherwise an exception is thrown.- Parameters:
-
toDocument
- a document to copy page to. -
copier
- a copier which bears a special copy logic. May be null. It is recommended to use the same instance ofIPdfPageExtraCopier
for the same output document. - Returns:
-
copied
PdfPage
.
-
copyTo
public PdfPage copyTo(PdfDocument toDocument, IPdfPageExtraCopier copier, boolean addPageToDocument, int pageInsertIndex) Copies page and adds it to the specified document to the end or by index if the corresponding parameter is true.
NOTE: Works only for pages from the document opened in reading mode, otherwise an exception is thrown.- Parameters:
-
toDocument
- a document to copy page to. -
copier
- a copier which bears a special copy logic. May be null. It is recommended to use the same instance ofIPdfPageExtraCopier
for the same output document. -
addPageToDocument
- true if page should be added to document. -
pageInsertIndex
- position to add the page to, if -1 page will be added to the end of the document, will be ignored if addPageToDocument is false. - Returns:
-
copied
PdfPage
.
-
copyAsFormXObject
Copies page as FormXObject to the specified document.- Parameters:
-
toDocument
- a document to copy to. - Returns:
-
copied
PdfFormXObject
object. - Throws:
-
IOException
- if an I/O error occurs.
-
getDocument
Gets thePdfDocument
that owns that page, ornull
if such document isn't exist.- Returns:
-
PdfDocument
that owns that page, ornull
if such document isn't exist.
-
flush
public void flush()Flushes page dictionary, its content streams, annotations and thumb image.If the page belongs to the document which is tagged, page flushing also triggers flushing of the tags, which are considered to belong to the page. The logic that defines if the given tag (structure element) belongs to the page is the following: if all the marked content references (dictionary or number references), that are the descendants of the given structure element, belong to the current page - the tag is considered to belong to the page. If tag has descendants from several pages - it is flushed, if all other pages except the current one are flushed.
- Overrides:
-
flush
in classPdfObjectWrapper<PdfDictionary>
-
flush
public void flush(boolean flushResourcesContentStreams) Flushes page dictionary, its content streams, annotations and thumb image. IfflushResourcesContentStreams
is true, all content streams that are rendered on this page (like FormXObjects, annotation appearance streams, patterns) and also all images associated with this page will also be flushed.For notes about tag structure flushing see
PdfPage#flush() method
.If
PdfADocument
is used, flushing will be applied only ifflushResourcesContentStreams
is true.Be careful with handling document in which some of the pages are flushed. Keep in mind that flushed objects are finalized and are completely written to the output stream. This frees their memory but makes it impossible to modify or read data from them. Whenever there is an attempt to modify or to fetch flushed object inner contents an exception will be thrown. Flushing is only possible for objects in the writing and stamping modes, also its possible to flush modified objects in append mode.
- Parameters:
-
flushResourcesContentStreams
- if true all content streams that are rendered on this page (like form xObjects, annotation appearance streams, patterns) and also all images associated with this page will be flushed.
-
getMediaBox
GetsRectangle
object specified by page's Media Box, that defines the boundaries of the physical medium on which the page shall be displayed or printed- Returns:
-
Rectangle
object specified by page Media Box, expressed in default user space units. - Throws:
-
PdfException
- in case of any error while reading MediaBox object.
-
setMediaBox
Sets the Media Box object, that defines the boundaries of the physical medium on which the page shall be displayed or printed. -
getCropBox
Gets theRectangle
specified by page's CropBox, that defines the visible region of default user space. When the page is displayed or printed, its contents shall be clipped (cropped) to this rectangle and then shall be imposed on the output medium in some implementation-defined manner.- Returns:
-
the
Rectangle
object specified by pages's CropBox, expressed in default user space units. MediaBox by default.
-
setCropBox
Sets the CropBox object, that defines the visible region of default user space. When the page is displayed or printed, its contents shall be clipped (cropped) to this rectangle and then shall be imposed on the output medium in some implementation-defined manner. -
setBleedBox
Sets the BleedBox object, that defines the region to which the contents of the page shall be clipped when output in a production environment. -
getBleedBox
Gets theRectangle
object specified by page's BleedBox, that define the region to which the contents of the page shall be clipped when output in a production environment.- Returns:
-
the
Rectangle
object specified by page's BleedBox, expressed in default user space units. CropBox by default.
-
setArtBox
Sets the ArtBox object, that define the extent of the page’s meaningful content (including potential white space) as intended by the page’s creator. -
getArtBox
Gets theRectangle
object specified by page's ArtBox, that define the extent of the page’s meaningful content (including potential white space) as intended by the page’s creator.- Returns:
-
the
Rectangle
object specified by page's ArtBox, expressed in default user space units. CropBox by default.
-
setTrimBox
Sets the TrimBox object, that define the intended dimensions of the finished page after trimming. -
getTrimBox
Gets theRectangle
object specified by page's TrimBox object, that define the intended dimensions of the finished page after trimming.- Returns:
-
the
Rectangle
object specified by page's TrimBox, expressed in default user space units. CropBox by default.
-
getContentBytes
public byte[] getContentBytes()Get decoded bytes for the whole page content.- Returns:
- byte array.
- Throws:
-
PdfException
- in case of anyIOException
.
-
getStreamBytes
public byte[] getStreamBytes(int index) Gets decoded bytes of a certain stream of a page content.- Parameters:
-
index
- index of stream inside Content. - Returns:
- byte array.
- Throws:
-
PdfException
- in case of anyIOException
.
-
getNextMcid
public int getNextMcid()Calculates and returns the next available for this page's content stream MCID reference.- Returns:
- calculated MCID reference.
- Throws:
-
PdfException
- in case of not tagged document.
-
getStructParentIndex
public int getStructParentIndex()Gets the key of the page’s entry in the structural parent tree.- Returns:
- the key of the page’s entry in the structural parent tree. If page has no entry in the structural parent tree, returned value is -1.
-
setAdditionalAction
Helper method to add an additional action to this page. May be used in chain. -
getAnnotations
Gets array of annotation dictionaries that shall contain indirect references to all annotations associated with the page.- Returns:
-
the
List
<PdfAnnotation
> containing all page's annotations.
-
containsAnnotation
Checks if page contains the specified annotation.- Parameters:
-
annotation
- thePdfAnnotation
to check. - Returns:
-
true
if page contains specified annotation andfalse
otherwise.
-
addAnnotation
Adds specified annotation to the end of annotations array and tagged it. May be used in chain.- Parameters:
-
annotation
- thePdfAnnotation
to add. - Returns:
-
this
PdfPage
instance.
-
addAnnotation
Adds specifiedPdfAnnotation
to specified index in annotations array with or without autotagging. May be used in chain.- Parameters:
-
index
- the index at which specified annotation will be added. If-1
then annotation will be added to the end of array. -
annotation
- thePdfAnnotation
to add. -
tagAnnotation
- iftrue
the added annotation will be autotagged. - Returns:
-
this
PdfPage
instance.
-
removeAnnotation
Removes an annotation from the page.When document is tagged a corresponding logical structure content item for this annotation will be removed; its immediate structure element parent will be removed as well if the following conditions are met: annotation content item was its single child and structure element role is either Annot or Form.
- Parameters:
-
annotation
- an annotation to be removed - Returns:
-
this
PdfPage
instance.
-
removeAnnotation
Removes an annotation from the page.When document is tagged a corresponding logical structure content item for this annotation will be removed; its immediate structure element parent will be removed as well if the following conditions are met: annotation content item was its single child and structure element role is either Annot or Form.
- Parameters:
-
annotation
- an annotation to be removed -
rememberTagPointer
- if set to true, theTagStructureContext.getAutoTaggingPointer()
instance ofTagTreePointer
will be moved to the parent of the removed annotation tag. Can be used to add a new annotation to the same place in the tag structure. (E.g. when merged Acroform field is split into a field and a pure widget, the page annotation needs to be replaced by the new one) - Returns:
-
this
PdfPage
instance.
-
getAnnotsSize
public int getAnnotsSize()Gets the number ofPdfAnnotation
associated with this page.- Returns:
-
the
int
number ofPdfAnnotation
associated with this page.
-
getOutlines
This method gets outlines of a current page- Parameters:
-
updateOutlines
- if the flag istrue
, the method reads the whole document and creates outline tree. If the flag isfalse
, the method gets cached outline tree (if it was cached via calling getOutlines method before). - Returns:
- return all outlines of a current page
-
isIgnorePageRotationForContent
public boolean isIgnorePageRotationForContent()- Returns:
- true - if in case the page has a rotation, then new content will be automatically rotated in the opposite direction. On the rotated page this would look like if new content ignores page rotation.
-
setIgnorePageRotationForContent
If true - defines that in case the page has a rotation, then new content will be automatically rotated in the opposite direction. On the rotated page this would look like if new content ignores page rotation. Default value -false
.- Parameters:
-
ignorePageRotationForContent
- - true to ignore rotation of the new content on the rotated page. - Returns:
-
this
PdfPage
instance.
-
setPageLabel
This method adds or replaces a page label.- Parameters:
-
numberingStyle
- The numbering style that shall be used for the numeric portion of each page label. May be NULL -
labelPrefix
- The label prefix for page labels in this range. May be NULL - Returns:
-
this
PdfPage
instance.
-
setPageLabel
public PdfPage setPageLabel(PageLabelNumberingStyle numberingStyle, String labelPrefix, int firstPage) This method adds or replaces a page label.- Parameters:
-
numberingStyle
- The numbering style that shall be used for the numeric portion of each page label. May be NULL -
labelPrefix
- The label prefix for page labels in this range. May be NULL -
firstPage
- The value of the numeric portion for the first page label in the range. Must be greater or equal 1. - Returns:
-
this
PdfPage
instance.
-
setTabOrder
Sets a name specifying the tab order that shall be used for annotations on the page. The possible values arePdfName.R
(row order),PdfName.C
(column order), andPdfName.S
(structure order). Beginning with PDF 2.0, the possible values also includePdfName.A
(annotations array order) andPdfName.W
(widget order). See ISO 32000 12.5, "Annotations" for details. -
getTabOrder
Gets a name specifying the tab order that shall be used for annotations on the page. The possible values arePdfName.R
(row order),PdfName.C
(column order), andPdfName.S
(structure order). Beginning with PDF 2.0, the possible values also includePdfName.A
(annotations array order) andPdfName.W
(widget order). See ISO 32000 12.5, "Annotations" for details.- Returns:
-
a
PdfName
specifying the annotations tab order or null if tab order is not defined.
-
setThumbnailImage
Sets a stream object that shall define the page’s thumbnail image. Thumbnail images represent the contents of its pages in miniature form- Parameters:
-
thumb
- the thumbnail image - Returns:
-
this
PdfPage
object
-
getThumbnailImage
Sets a stream object that shall define the page’s thumbnail image. Thumbnail images represent the contents of its pages in miniature form- Returns:
-
the thumbnail image, or
null
if it is not present
-
addOutputIntent
AddsPdfOutputIntent
that shall specify the colour characteristics of output devices on which the page might be rendered.- Parameters:
-
outputIntent
-PdfOutputIntent
to add. - Returns:
-
this
PdfPage
object - See Also:
-
put
Helper method that associates specified value with the specified key in the underlyingPdfDictionary
. Can be used in method chaining. -
remove
Helper method that removes the value associated with the specified key from the underlyingPdfDictionary
. Can be used in method chaining. -
isPageRotationInverseMatrixWritten
public boolean isPageRotationInverseMatrixWritten()This flag is meaningful for the case, when page rotation is applied and ignorePageRotationForContent is set to true. NOTE: It is needed for the internal usage.
This flag defines if inverse matrix (which rotates content into the opposite direction from page rotation direction in order to give the impression of the not rotated text) is already applied to the page content stream. SeesetIgnorePageRotationForContent(boolean)
- Returns:
- true, if inverse matrix is already applied, false otherwise.
-
setPageRotationInverseMatrixWritten
public void setPageRotationInverseMatrixWritten()NOTE: For internal usage! Use this method only if you know what you are doing.
This method is called when inverse matrix (which rotates content into the opposite direction from page rotation direction in order to give the impression of the not rotated text) is applied to the page content stream. SeesetIgnorePageRotationForContent(boolean)
-
addAssociatedFile
Adds file associated with PDF page and identifies the relationship between them.Associated files may be used in Pdf/A-3 and Pdf 2.0 documents. The method adds file to array value of the AF key in the page dictionary. If description is provided, it also will add file description to catalog Names tree.
For associated files their associated file specification dictionaries shall include the AFRelationship key
- Parameters:
-
description
- the file description -
fs
- file specification dictionary of associated file
-
addAssociatedFile
Adds file associated with PDF page and identifies the relationship between them.
Associated files may be used in Pdf/A-3 and Pdf 2.0 documents. The method adds file to array value of the AF key in the page dictionary.
For associated files their associated file specification dictionaries shall include the AFRelationship key
- Parameters:
-
fs
- file specification dictionary of associated file
-
getAssociatedFiles
Returns files associated with PDF page.- Parameters:
-
create
- defines whether AF arrays will be created if it doesn't exist - Returns:
- associated files array
-
isWrappedObjectMustBeIndirect
protected boolean isWrappedObjectMustBeIndirect()Description copied from class:PdfObjectWrapper
Defines if the object behind this wrapper must be an indirect object in the resultant document.
If this method returns true it doesn't necessarily mean that object must be in the indirect state at any moment, but rather defines that when the object will be written to the document it will be transformed into indirect object if it's not indirect yet.
Return value of this method shouldn't depend on any logic, it should return always true or false.- Specified by:
-
isWrappedObjectMustBeIndirect
in classPdfObjectWrapper<PdfDictionary>
- Returns:
- true if in the resultant document the object behind the wrapper must be indirect, otherwise false.
-