Modifier and Type | Field and Description |
---|---|
protected PdfDocument |
Barcode1D.document |
Modifier and Type | Method and Description |
---|---|
PdfFormXObject |
Barcode1D.createFormXObject(Color barColor, Color textColor, PdfDocument document)
Creates a PdfFormXObject with the barcode.
|
PdfFormXObject |
BarcodePDF417.createFormXObject(Color foreground, float moduleWidth, float moduleHeight, PdfDocument document)
Creates a PdfFormXObject with the barcode with given module width and module height.
|
PdfFormXObject |
BarcodeQRCode.createFormXObject(Color foreground, float moduleSize, PdfDocument document)
Creates a PdfFormXObject with the barcode.
|
PdfFormXObject |
BarcodeDataMatrix.createFormXObject(Color foreground, float moduleSide, PdfDocument document)
Creates a PdfFormXObject with the barcode with given module width and module height.
|
PdfFormXObject |
BarcodeQRCode.createFormXObject(Color foreground, PdfDocument document)
Creates a PdfFormXObject with the barcode.
|
PdfFormXObject |
BarcodePDF417.createFormXObject(Color foreground, PdfDocument document)
Creates a PdfFormXObject with the barcode.
|
PdfFormXObject |
BarcodeDataMatrix.createFormXObject(Color foreground, PdfDocument document) |
abstract PdfFormXObject |
Barcode2D.createFormXObject(Color foreground, PdfDocument document)
Creates a PdfFormXObject with the barcode.
|
PdfFormXObject |
Barcode2D.createFormXObject(PdfDocument document)
Creates a PdfFormXObject with the barcode.
|
PdfFormXObject |
Barcode1D.createFormXObject(PdfDocument document)
Creates a PdfFormXObject with the barcode.
|
Constructor and Description |
---|
Barcode128(PdfDocument document)
Creates new Barcode128
|
Barcode1D(PdfDocument document) |
Barcode39(PdfDocument document)
Creates a new Barcode39.
|
BarcodeCodabar(PdfDocument document)
Creates a new BarcodeCodabar.
|
BarcodeEAN(PdfDocument document)
Creates new BarcodeEAN
|
BarcodeInter25(PdfDocument document)
Creates new BarcodeInter25
|
BarcodeMSI(PdfDocument document)
Creates a new BarcodeMSI
|
BarcodePostnet(PdfDocument document) |
Modifier and Type | Field and Description |
---|---|
protected PdfDocument |
PdfAcroForm.document
The PdfDocument to which the PdfAcroForm belongs.
|
Modifier and Type | Method and Description |
---|---|
PdfDocument |
PdfAcroForm.getPdfDocument()
Gets the PdfDocument this PdfAcroForm belongs to.
|
Modifier and Type | Method and Description |
---|---|
static PdfAcroForm |
PdfAcroForm.getAcroForm(PdfDocument document, boolean createIfNotExist)
Retrieves AcroForm from the document.
|
Modifier and Type | Method and Description |
---|---|
protected PdfDocument |
PdfFormField.getDocument() |
Modifier and Type | Method and Description |
---|---|
static PdfButtonFormField |
PdfFormField.createButton(PdfDocument doc, int flags)
Creates an empty button form field with custom behavior and layout.
|
static PdfButtonFormField |
PdfFormField.createButton(PdfDocument doc, Rectangle rect, int flags)
Creates an empty button form field with custom behavior and layout, on a specified location.
|
static PdfButtonFormField |
PdfFormField.createCheckBox(PdfDocument doc, Rectangle rect, String name, String value)
Creates a PdfButtonFormField as a checkbox.
|
static PdfButtonFormField |
PdfFormField.createCheckBox(PdfDocument doc, Rectangle rect, String name, String value, int checkType)
Creates a PdfButtonFormField as a checkbox.
|
static PdfButtonFormField |
PdfFormField.createCheckBox(PdfDocument doc, Rectangle rect, String name, String value, int checkType, PdfAConformanceLevel pdfAConformanceLevel)
Creates a PdfButtonFormField as a checkbox.
|
static PdfChoiceFormField |
PdfFormField.createChoice(PdfDocument doc, int flags)
Creates an empty choice form field .
|
static PdfChoiceFormField |
PdfFormField.createChoice(PdfDocument doc, Rectangle rect, int flags)
Creates an empty choice form field with custom behavior and layout, on a specified location.
|
static PdfChoiceFormField |
PdfFormField.createChoice(PdfDocument doc, Rectangle rect, String name, String value, PdfArray options, int flags)
Creates a choice form field with custom behavior and layout, on a specified location.
|
static PdfChoiceFormField |
PdfFormField.createChoice(PdfDocument doc, Rectangle rect, String name, String value, PdfFont font, float fontSize, PdfArray options, int flags)
Creates a choice form field with custom behavior and layout, on a specified location.
|
static PdfChoiceFormField |
PdfFormField.createChoice(PdfDocument doc, Rectangle rect, String name, String value, PdfFont font, int fontSize, PdfArray options, int flags)
Deprecated.
Will be removed in 7.1. Use
PdfFormField.createChoice(PdfDocument, Rectangle, String, String, PdfFont, float, PdfArray, int) instead
|
static PdfChoiceFormField |
PdfFormField.createComboBox(PdfDocument doc, Rectangle rect, String name, String value, String[] options)
Creates a combobox with custom behavior and layout, on a specified location.
|
static PdfChoiceFormField |
PdfFormField.createComboBox(PdfDocument doc, Rectangle rect, String name, String value, String[][] options)
Creates a combobox with custom behavior and layout, on a specified location.
|
static PdfFormField |
PdfFormField.createEmptyField(PdfDocument doc)
Creates an empty form field without a predefined set of layout or behavior.
|
static PdfChoiceFormField |
PdfFormField.createList(PdfDocument doc, Rectangle rect, String name, String value, String[] options)
Creates a list field with custom behavior and layout, on a specified location.
|
static PdfChoiceFormField |
PdfFormField.createList(PdfDocument doc, Rectangle rect, String name, String value, String[][] options)
Creates a list field with custom behavior and layout, on a specified location.
|
static PdfTextFormField |
PdfFormField.createMultilineText(PdfDocument doc, Rectangle rect, String name, String value)
Creates a named multiline text form field with an initial value, and the form's default font specified in PdfAcroForm.getDefaultResources() .
|
static PdfTextFormField |
PdfFormField.createMultilineText(PdfDocument doc, Rectangle rect, String name, String value, PdfFont font, float fontSize)
Creates a named multilined text form field with an initial value, with a specified font and font size.
|
static PdfTextFormField |
PdfFormField.createMultilineText(PdfDocument doc, Rectangle rect, String name, String value, PdfFont font, int fontSize)
Deprecated.
|
static PdfButtonFormField |
PdfFormField.createPushButton(PdfDocument doc, Rectangle rect, String name, String caption)
Creates a PdfButtonFormField as a push button without data.
|
static PdfButtonFormField |
PdfFormField.createPushButton(PdfDocument doc, Rectangle rect, String name, String caption, PdfFont font, float fontSize)
Creates a PdfButtonFormField as a push button without data, with its caption in a custom font.
|
static PdfButtonFormField |
PdfFormField.createPushButton(PdfDocument doc, Rectangle rect, String name, String caption, PdfFont font, int fontSize)
Deprecated.
Will be removed in 7.1. Use
PdfFormField.createPushButton(PdfDocument, Rectangle, String, String, PdfFont, float) instead.
|
static PdfFormField |
PdfFormField.createRadioButton(PdfDocument doc, Rectangle rect, PdfButtonFormField radioGroup, String value)
Creates a generic PdfFormField that is added to a radio group.
|
static PdfFormField |
PdfFormField.createRadioButton(PdfDocument doc, Rectangle rect, PdfButtonFormField radioGroup, String value, PdfAConformanceLevel pdfAConformanceLevel)
Creates a generic PdfFormField that is added to a radio group.
|
static PdfButtonFormField |
PdfFormField.createRadioGroup(PdfDocument doc, String name, String value)
Creates a radio group form field .
|
static PdfSignatureFormField |
PdfFormField.createSignature(PdfDocument doc)
Creates an empty signature form field .
|
static PdfSignatureFormField |
PdfFormField.createSignature(PdfDocument doc, Rectangle rect)
Creates an empty signature form field .
|
static PdfTextFormField |
PdfFormField.createText(PdfDocument doc)
Creates an empty text form field .
|
static PdfTextFormField |
PdfFormField.createText(PdfDocument doc, Rectangle rect)
Creates an empty text form field .
|
static PdfTextFormField |
PdfFormField.createText(PdfDocument doc, Rectangle rect, String name)
Creates a named text form field with an initial value, and the form's default font specified in PdfAcroForm.getDefaultResources() .
|
static PdfTextFormField |
PdfFormField.createText(PdfDocument doc, Rectangle rect, String name, String value)
Creates a named text form field with an initial value, and the form's default font specified in PdfAcroForm.getDefaultResources() .
|
static PdfTextFormField |
PdfFormField.createText(PdfDocument doc, Rectangle rect, String name, String value, PdfFont font, float fontSize)
Creates a named text form field with an initial value, with a specified font and font size.
|
static PdfTextFormField |
PdfFormField.createText(PdfDocument doc, Rectangle rect, String name, String value, PdfFont font, float fontSize, boolean multiline)
Creates a named text form field with an initial value, with a specified font and font size.
|
static PdfTextFormField |
PdfFormField.createText(PdfDocument doc, Rectangle rect, String name, String value, PdfFont font, int fontSize)
Deprecated.
Will be removed in 7.1. Use
PdfFormField.createText(PdfDocument, Rectangle, String, String, PdfFont, float) instead.
|
static PdfTextFormField |
PdfFormField.createText(PdfDocument doc, Rectangle rect, String name, String value, PdfFont font, int fontSize, boolean multiline)
Deprecated.
Will be removed in 7.1. Use
PdfFormField.createText(PdfDocument, Rectangle, String, String, PdfFont, float, boolean) instead.
|
static PdfFormField |
PdfFormField.makeFormField(PdfObject pdfObject, PdfDocument document)
Creates a (subtype of) PdfFormField object.
|
Constructor and Description |
---|
PdfButtonFormField(PdfDocument pdfDocument) |
PdfButtonFormField(PdfWidgetAnnotation widget, PdfDocument pdfDocument) |
PdfChoiceFormField(PdfDocument pdfDocument) |
PdfChoiceFormField(PdfWidgetAnnotation widget, PdfDocument pdfDocument) |
PdfFormField(PdfDocument pdfDocument)
Creates a minimal PdfFormField .
|
PdfFormField(PdfWidgetAnnotation widget, PdfDocument pdfDocument)
Creates a form field as a parent of a PdfWidgetAnnotation .
|
PdfSignatureFormField(PdfDocument pdfDocument) |
PdfSignatureFormField(PdfWidgetAnnotation widget, PdfDocument pdfDocument) |
PdfTextFormField(PdfDocument pdfDocument) |
PdfTextFormField(PdfWidgetAnnotation widget, PdfDocument pdfDocument) |
Modifier and Type | Method and Description |
---|---|
static void |
XfaForm.setXfaForm(XfaForm form, PdfDocument pdfDocument)
Sets the XFA key from a byte array.
|
void |
XfaForm.write(PdfDocument document)
Write the XfaForm to the provided PdfDocument .
|
Constructor and Description |
---|
XfaForm(PdfDocument pdfDocument)
A constructor from a PdfDocument .
|
Modifier and Type | Method and Description |
---|---|
PdfDocument |
PdfDocumentEvent.getDocument()
Returns the PdfDocument associated with this event.
|
Constructor and Description |
---|
PdfDocumentEvent(String type, PdfDocument document)
Creates a PdfDocumentEvent.
|
Modifier and Type | Method and Description |
---|---|
protected PdfDocument |
PdfType3Font.getDocument() |
Modifier and Type | Method and Description |
---|---|
static PdfType3Font |
PdfFontFactory.createType3Font(PdfDocument document, boolean colorized)
Creates a new instance of PdfType3Font
|
Modifier and Type | Field and Description |
---|---|
protected PdfDocument |
PdfOutputStream.document
Document associated with PdfOutputStream.
|
protected PdfDocument |
PdfReader.pdfDocument |
protected PdfDocument |
PdfIndirectReference.pdfDocument
PdfDocument object belongs to.
|
Modifier and Type | Method and Description |
---|---|
PdfDocument |
PdfPage.getDocument()
Gets the PdfDocument that owns that page, or null if such document isn't exist.
|
PdfDocument |
PdfIndirectReference.getDocument() |
PdfDocument |
PdfCatalog.getDocument() |
Modifier and Type | Method and Description |
---|---|
PdfName |
PdfResources.addFont(PdfDocument pdfDocument, PdfFont font)
Adds font to resources and register PdfFont in the document for further flushing.
|
PdfFormXObject |
PdfPage.copyAsFormXObject(PdfDocument toDocument)
Copies page as FormXObject to the specified document.
|
protected void |
PdfString.copyContent(PdfObject from, PdfDocument document) |
protected void |
PdfStream.copyContent(PdfObject from, PdfDocument document) |
protected void |
PdfPrimitiveObject.copyContent(PdfObject from, PdfDocument document) |
protected void |
PdfObject.copyContent(PdfObject from, PdfDocument document)
Copies object content from object 'from'.
|
protected void |
PdfNumber.copyContent(PdfObject from, PdfDocument document) |
protected void |
PdfNull.copyContent(PdfObject from, PdfDocument document) |
protected void |
PdfName.copyContent(PdfObject from, PdfDocument document) |
protected void |
PdfLiteral.copyContent(PdfObject from, PdfDocument document) |
protected void |
PdfIndirectReference.copyContent(PdfObject from, PdfDocument document) |
protected void |
PdfDictionary.copyContent(PdfObject from, PdfDocument document) |
protected void |
PdfBoolean.copyContent(PdfObject from, PdfDocument document) |
protected void |
PdfArray.copyContent(PdfObject from, PdfDocument document) |
protected PdfObject |
PdfWriter.copyObject(PdfObject obj, PdfDocument documentTo, boolean allowDuplicating) |
List<PdfPage> |
PdfDocument.copyPagesTo(int pageFrom, int pageTo, PdfDocument toDocument)
Copies a range of pages from current document to toDocument appending copied pages to the end.
|
List<PdfPage> |
PdfDocument.copyPagesTo(int pageFrom, int pageTo, PdfDocument toDocument, int insertBeforePage)
Copies a range of pages from current document to toDocument .
|
List<PdfPage> |
PdfDocument.copyPagesTo(int pageFrom, int pageTo, PdfDocument toDocument, int insertBeforePage, IPdfPageExtraCopier copier)
Copies a range of pages from current document to toDocument .
|
List<PdfPage> |
PdfDocument.copyPagesTo(int pageFrom, int pageTo, PdfDocument toDocument, IPdfPageExtraCopier copier)
Copies a range of pages from current document to toDocument appending copied pages to the end.
|
List<PdfPage> |
PdfDocument.copyPagesTo(List<Integer> pagesToCopy, PdfDocument toDocument)
Copies a range of pages from current document to toDocument appending copied pages to the end.
|
List<PdfPage> |
PdfDocument.copyPagesTo(List<Integer> pagesToCopy, PdfDocument toDocument, int insertBeforePage)
Copies a range of pages from current document to toDocument .
|
List<PdfPage> |
PdfDocument.copyPagesTo(List<Integer> pagesToCopy, PdfDocument toDocument, int insertBeforePage, IPdfPageExtraCopier copier)
Copies a range of pages from current document to toDocument .
|
List<PdfPage> |
PdfDocument.copyPagesTo(List<Integer> pagesToCopy, PdfDocument toDocument, IPdfPageExtraCopier copier)
Copies a range of pages from current document to toDocument appending copied pages to the end.
|
PdfString |
PdfString.copyTo(PdfDocument document)
Copies object to a specified document.
|
PdfStream |
PdfStream.copyTo(PdfDocument document)
Copies object to a specified document.
|
PdfPage |
PdfPage.copyTo(PdfDocument toDocument)
Copies page to the specified document.
|
PdfObject |
PdfObject.copyTo(PdfDocument document)
Copies object to a specified document.
|
PdfNumber |
PdfNumber.copyTo(PdfDocument document)
Copies object to a specified document.
|
PdfNull |
PdfNull.copyTo(PdfDocument document)
Copies object to a specified document.
|
PdfName |
PdfName.copyTo(PdfDocument document)
Copies object to a specified document.
|
PdfDictionary |
PdfDictionary.copyTo(PdfDocument document)
Copies object to a specified document.
|
PdfBoolean |
PdfBoolean.copyTo(PdfDocument document)
Copies object to a specified document.
|
PdfArray |
PdfArray.copyTo(PdfDocument document)
Copies object to a specified document.
|
PdfString |
PdfString.copyTo(PdfDocument document, boolean allowDuplicating)
Copies object to a specified document.
|
PdfStream |
PdfStream.copyTo(PdfDocument document, boolean allowDuplicating)
Copies object to a specified document.
|
PdfObject |
PdfObject.copyTo(PdfDocument document, boolean allowDuplicating)
Copies object to a specified document.
|
PdfNumber |
PdfNumber.copyTo(PdfDocument document, boolean allowDuplicating)
Copies object to a specified document.
|
PdfNull |
PdfNull.copyTo(PdfDocument document, boolean allowDuplicating)
Copies object to a specified document.
|
PdfName |
PdfName.copyTo(PdfDocument document, boolean allowDuplicating)
Copies object to a specified document.
|
PdfDictionary |
PdfDictionary.copyTo(PdfDocument document, boolean allowDuplicating)
Copies object to a specified document.
|
PdfBoolean |
PdfBoolean.copyTo(PdfDocument document, boolean allowDuplicating)
Copies object to a specified document.
|
PdfArray |
PdfArray.copyTo(PdfDocument document, boolean allowDuplicating)
Copies object to a specified document.
|
PdfPage |
PdfPage.copyTo(PdfDocument toDocument, IPdfPageExtraCopier copier)
Copies page to the specified document.
|
PdfDictionary |
PdfDictionary.copyTo(PdfDocument document, List<PdfName> excludeKeys, boolean allowDuplicating)
Copies dictionary to specified document.
|
void |
PdfDocument.flushCopiedObjects(PdfDocument sourceDoc)
Flush all copied objects and remove them from copied cache.
|
PdfString |
PdfString.makeIndirect(PdfDocument document)
Marks object to be saved as indirect.
|
PdfStream |
PdfStream.makeIndirect(PdfDocument document)
Marks object to be saved as indirect.
|
PdfObjectWrapper<T> |
PdfObjectWrapper.makeIndirect(PdfDocument document)
Marks object behind wrapper to be saved as indirect.
|
PdfObject |
PdfObject.makeIndirect(PdfDocument document)
Marks object to be saved as indirect.
|
PdfNumber |
PdfNumber.makeIndirect(PdfDocument document)
Marks object to be saved as indirect.
|
PdfNull |
PdfNull.makeIndirect(PdfDocument document)
Marks object to be saved as indirect.
|
PdfName |
PdfName.makeIndirect(PdfDocument document)
Marks object to be saved as indirect.
|
PdfDictionary |
PdfDictionary.makeIndirect(PdfDocument document)
Marks object to be saved as indirect.
|
PdfBoolean |
PdfBoolean.makeIndirect(PdfDocument document)
Marks object to be saved as indirect.
|
PdfArray |
PdfArray.makeIndirect(PdfDocument document)
Marks object to be saved as indirect.
|
PdfString |
PdfString.makeIndirect(PdfDocument document, PdfIndirectReference reference)
Marks object to be saved as indirect.
|
PdfStream |
PdfStream.makeIndirect(PdfDocument document, PdfIndirectReference reference)
Marks object to be saved as indirect.
|
PdfObject |
PdfPrimitiveObject.makeIndirect(PdfDocument document, PdfIndirectReference reference) |
PdfObjectWrapper<T> |
PdfObjectWrapper.makeIndirect(PdfDocument document, PdfIndirectReference reference)
Marks object behind wrapper to be saved as indirect.
|
PdfObject |
PdfObject.makeIndirect(PdfDocument document, PdfIndirectReference reference)
Marks object to be saved as indirect.
|
PdfNumber |
PdfNumber.makeIndirect(PdfDocument document, PdfIndirectReference reference)
Marks object to be saved as indirect.
|
PdfNull |
PdfNull.makeIndirect(PdfDocument document, PdfIndirectReference reference)
Marks object to be saved as indirect.
|
PdfName |
PdfName.makeIndirect(PdfDocument document, PdfIndirectReference reference)
Marks object to be saved as indirect.
|
PdfDictionary |
PdfDictionary.makeIndirect(PdfDocument document, PdfIndirectReference reference)
Marks object to be saved as indirect.
|
PdfBoolean |
PdfBoolean.makeIndirect(PdfDocument document, PdfIndirectReference reference)
Marks object to be saved as indirect.
|
PdfArray |
PdfArray.makeIndirect(PdfDocument document, PdfIndirectReference reference)
Marks object to be saved as indirect.
|
Constructor and Description |
---|
PdfCatalog(PdfDocument pdfDocument) |
PdfDocumentInfo(PdfDictionary pdfObject, PdfDocument pdfDocument)
Create a PdfDocumentInfo based on the passed PdfDictionary and linked to the passed PdfDocument.
|
PdfDocumentInfo(PdfDocument pdfDocument)
Create a default, empty PdfDocumentInfo and link it to the passed PdfDocument
|
PdfIndirectReference(PdfDocument doc, int objNr) |
PdfIndirectReference(PdfDocument doc, int objNr, int genNr) |
PdfIndirectReference(PdfDocument doc, int objNr, int genNr, long offset) |
PdfOutline(PdfDocument doc)
Deprecated.
Use
PdfCatalog.getOutlines(boolean) instead.
|
PdfOutline(String title, PdfDictionary content, PdfDocument pdfDocument)
Deprecated.
Use
PdfCatalog.getOutlines(boolean) instead.
|
PdfPage(PdfDocument pdfDocument) |
PdfPage(PdfDocument pdfDocument, PageSize pageSize) |
PdfStream(PdfDocument doc, InputStream inputStream)
Creates an efficient stream.
|
PdfStream(PdfDocument doc, InputStream inputStream, int compressionLevel)
Creates an efficient stream.
|
Constructor and Description |
---|
PdfSoundAnnotation(PdfDocument document, Rectangle rect, InputStream soundStream, float sampleRate, PdfName encoding, int channels, int sampleSizeInBits) |
Modifier and Type | Field and Description |
---|---|
protected PdfDocument |
PdfCanvas.document
the document that the resulting content stream of this canvas will be written to.
|
Constructor and Description |
---|
PdfCanvas(PdfDocument doc, int pageNum)
Convenience method for fast PdfCanvas creation by a certain page.
|
PdfCanvas(PdfFormXObject xObj, PdfDocument document)
Creates a PdfCanvas from a PdfFormXObject.
|
PdfCanvas(PdfStream contentStream, PdfResources resources, PdfDocument document)
Creates PdfCanvas from content stream of page, form XObject, pattern etc.
|
PdfPatternCanvas(PdfPattern.Tiling pattern, PdfDocument document)
Creates PdfPatternCanvas for a document from a provided Tiling pattern
|
PdfPatternCanvas(PdfStream contentStream, PdfResources resources, PdfDocument document)
Creates PdfPatternCanvas from content stream of page, form XObject, pattern etc.
|
Constructor and Description |
---|
PdfDocumentContentParser(PdfDocument pdfDocument) |
Modifier and Type | Method and Description |
---|---|
PdfXObject |
WmfImageHelper.createPdfForm(PdfDocument document)
Create a PdfXObject based on the WMF image.
|
Modifier and Type | Method and Description |
---|---|
static PdfFileSpec |
PdfFileSpec.createEmbeddedFileSpec(PdfDocument doc, byte[] fileStore, String description, String fileDisplay, PdfName mimeType, PdfDictionary fileParameter, PdfName afRelationshipValue, boolean isUnicodeFileName)
Embed a file to a PdfDocument.
|
static PdfFileSpec |
PdfFileSpec.createEmbeddedFileSpec(PdfDocument doc, InputStream is, String description, String fileDisplay, PdfName mimeType, PdfName afRelationshipValue, boolean isUnicodeFileName) |
static PdfFileSpec |
PdfFileSpec.createEmbeddedFileSpec(PdfDocument doc, String filePath, String description, String fileDisplay, PdfName mimeType, PdfName afRelationshipValue, boolean isUnicodeFileName) |
static PdfFileSpec |
PdfFileSpec.createExternalFileSpec(PdfDocument doc, String filePath, boolean isUnicodeFileName) |
Modifier and Type | Method and Description |
---|---|
protected PdfDocument |
PdfOCProperties.getDocument() |
protected PdfDocument |
PdfLayerMembership.getDocument() |
protected PdfDocument |
PdfLayer.getDocument() |
Modifier and Type | Method and Description |
---|---|
static void |
PdfLayer.addOCGRadioGroup(PdfDocument document, List<PdfLayer> group)
Use this method to set a collection of optional content groups whose states are intended to follow a "radio button" paradigm.
|
static PdfLayer |
PdfLayer.createTitle(String title, PdfDocument document)
Creates a title layer.
|
protected static PdfLayer |
PdfLayer.createTitleSilent(String title, PdfDocument document)
Creates a title layer without registering it in PdfOCProperties.
|
Constructor and Description |
---|
PdfLayer(String name, PdfDocument document)
Creates a new layer by its name and document.
|
PdfLayerMembership(PdfDocument doc)
Creates a new, empty membership layer.
|
PdfOCProperties(PdfDocument document)
Creates a new PdfOCProperties instance.
|
Modifier and Type | Method and Description |
---|---|
PdfDocument |
PdfStructTreeRoot.getDocument() |
protected PdfDocument |
PdfStructElem.getDocument() |
Modifier and Type | Method and Description |
---|---|
void |
PdfStructTreeRoot.copyTo(PdfDocument destDocument, int insertBeforePage, Map<PdfPage,PdfPage> page2page)
Copies structure to a destDocument and insert it in a specified position in the document.
|
void |
PdfStructTreeRoot.copyTo(PdfDocument destDocument, Map<PdfPage,PdfPage> page2page)
Copies structure to a destDocument .
|
static int |
PdfStructElem.identifyType(PdfDocument doc, PdfName role) |
Constructor and Description |
---|
PdfStructElem(PdfDocument document, PdfName role) |
PdfStructElem(PdfDocument document, PdfName role, PdfAnnotation annot) |
PdfStructElem(PdfDocument document, PdfName role, PdfPage page) |
PdfStructTreeRoot(PdfDocument document) |
Modifier and Type | Method and Description |
---|---|
PdfDocument |
TagTreePointer.getDocument() |
Constructor and Description |
---|
TagStructureContext(PdfDocument document)
Do not use this constructor, instead use getTagStructureContext() method.
|
TagStructureContext(PdfDocument document, PdfVersion tagStructureTargetVersion) |
TagTreePointer(PdfDocument document)
Creates TagTreePointer instance.
|
Modifier and Type | Method and Description |
---|---|
PdfImageXObject |
PdfImageXObject.copyTo(PdfDocument document)
Copy Image XObject to the specified document.
|
Constructor and Description |
---|
PdfFormXObject(WmfImageData image, PdfDocument pdfDocument)
Creates a form XObject from WmfImageData .
|
Modifier and Type | Field and Description |
---|---|
protected PdfDocument |
TaggedPdfReaderTool.document |
Modifier and Type | Method and Description |
---|---|
PdfDocument |
PdfSplitter.extractPageRange(PageRange pageRange)
Extracts the specified page ranges from a document.
|
PdfDocument |
PdfSplitter.getPdfDocument() |
Modifier and Type | Method and Description |
---|---|
List<PdfDocument> |
PdfSplitter.extractPageRanges(List<PageRange> pageRanges)
Extracts the specified page ranges from a document.
|
List<PdfDocument> |
PdfSplitter.splitByOutlines(List<String> outlineTitles)
Split a document by outline title (bookmark name), find outline by name and places the entire hierarchy in a separate document ( outlines and pages ) .
|
List<PdfDocument> |
PdfSplitter.splitByPageCount(int pageCount)
Splits a document into smaller documents with no more than @pageCount pages each.
|
List<PdfDocument> |
PdfSplitter.splitByPageNumbers(List<Integer> pageNumbers)
Splits the document by page numbers.
|
List<PdfDocument> |
PdfSplitter.splitBySize(long size)
Splits the document basing on the given size.
|
Modifier and Type | Method and Description |
---|---|
CompareTool.CompareResult |
CompareTool.compareByCatalog(PdfDocument outDocument, PdfDocument cmpDocument)
Compares two PDF documents by content starting from Catalog dictionary and then recursively comparing corresponding objects which are referenced from it.
|
void |
PdfSplitter.IDocumentReadyListener.documentReady(PdfDocument pdfDocument, PageRange pageRange) |
PdfMerger |
PdfMerger.merge(PdfDocument from, int fromPage, int toPage)
This method merges pages from the source document to the current one.
|
PdfMerger |
PdfMerger.merge(PdfDocument from, List<Integer> pages)
This method merges pages from the source document to the current one.
|
Constructor and Description |
---|
PdfMerger(PdfDocument pdfDocument)
This class is used to merge a number of existing documents into one.
|
PdfMerger(PdfDocument pdfDocument, boolean mergeTags, boolean mergeOutlines)
This class is used to merge a number of existing documents into one.
|
PdfSplitter(PdfDocument pdfDocument)
Creates a new instance of PdfSplitter class.
|
TaggedPdfReaderTool(PdfDocument document)
Constructs a TaggedPdfReaderTool via a given PdfDocument .
|
Modifier and Type | Field and Description |
---|---|
protected PdfDocument |
RootElement.pdfDocument |
Modifier and Type | Method and Description |
---|---|
PdfDocument |
Document.getPdfDocument()
Gets PDF document.
|
PdfDocument |
Canvas.getPdfDocument()
Gets the PdfDocument for this canvas.
|
Constructor and Description |
---|
Canvas(PdfCanvas pdfCanvas, PdfDocument pdfDocument, Rectangle rootArea)
Creates a new Canvas to manipulate a specific document and page.
|
Canvas(PdfCanvas pdfCanvas, PdfDocument pdfDocument, Rectangle rootArea, boolean immediateFlush)
Creates a new Canvas to manipulate a specific document and page.
|
Canvas(PdfFormXObject formXObject, PdfDocument pdfDocument)
Creates a new Canvas to manipulate a specific PdfFormXObject .
|
Document(PdfDocument pdfDoc)
Creates a document from a PdfDocument .
|
Document(PdfDocument pdfDoc, PageSize pageSize)
Creates a document from a PdfDocument with a manually set PageSize .
|
Document(PdfDocument pdfDoc, PageSize pageSize, boolean immediateFlush)
Creates a document from a PdfDocument with a manually set PageSize .
|
Modifier and Type | Method and Description |
---|---|
PdfDocument |
DrawContext.getDocument() |
Modifier and Type | Method and Description |
---|---|
protected void |
AbstractRenderer.applyAction(PdfDocument document) |
protected void |
AbstractRenderer.applyDestination(PdfDocument document) |
static void |
AccessibleAttributesApplier.applyLayoutAttributes(PdfName role, AbstractRenderer renderer, PdfDocument doc)
Deprecated.
Will be removed in iText 7.1
|
protected void |
AbstractRenderer.applyLinkAnnotation(PdfDocument document) |
Constructor and Description |
---|
DrawContext(PdfDocument document, PdfCanvas canvas) |
DrawContext(PdfDocument document, PdfCanvas canvas, boolean enableTagging) |
Modifier and Type | Class and Description |
---|---|
class |
PdfADocument
This class extends PdfDocument and is in charge of creating files that comply with the PDF/A standard.
|
Modifier and Type | Field and Description |
---|---|
protected PdfDocument |
PdfSigner.document
The PdfDocument.
|
protected PdfDocument |
LtvVerifier.document
A document object for the revision that is being verified.
|
Modifier and Type | Method and Description |
---|---|
PdfDocument |
PdfSigner.getDocument()
Gets the PdfDocument associated with this instance.
|
Modifier and Type | Method and Description |
---|---|
protected void |
LtvVerifier.initLtvVerifier(PdfDocument document) |
protected void |
PdfSigner.setDocument(PdfDocument document)
Sets the PdfDocument.
|
static void |
PdfSigner.signDeferred(PdfDocument document, String fieldName, OutputStream outs, IExternalSignatureContainer externalSignatureContainer)
Signs a PDF where space was already reserved.
|
Constructor and Description |
---|
LtvVerification(PdfDocument document)
The verification constructor.
|
LtvVerification(PdfDocument document, String securityProviderCode)
The verification constructor.
|
LtvVerifier(PdfDocument document)
Creates a VerificationData object for a PdfReader
|
LtvVerifier(PdfDocument document, String securityProviderCode) |
PdfSignatureAppearance(PdfDocument document, Rectangle pageRect, int pageNumber)
Creates a PdfSignatureAppearance.
|
SignatureUtil(PdfDocument document)
Creates a SignatureUtil instance.
|
Copyright © 1998–2018 iText Group NV. All rights reserved.