| Package | Description | 
|---|---|
| org.apache.pdfbox.cos | These are the low level objects that make up a PDF document. | 
| org.apache.pdfbox.encoding | This package contains the implementations for all of the encodings that are used in PDF documents. | 
| org.apache.pdfbox.filter | This package will hold the PDFBox implementations of the filters that are used in PDF documents. | 
| org.apache.pdfbox.pdfparser | The pdfparser package contains classes to parse PDF documents and objects within the document. | 
| org.apache.pdfbox.pdfwriter | This is the persistence layer used to write the PDFBox documents to a stream. | 
| org.apache.pdfbox.pdmodel | The PDModel package represents a high level API for creating and manipulating PDF documents. | 
| org.apache.pdfbox.pdmodel.common | High level PD classes that are used throughout several packages are placed in the PDModel common package. | 
| org.apache.pdfbox.pdmodel.common.filespecification | The file specification package defines classes that are used for the PDF File Specification logic. | 
| org.apache.pdfbox.pdmodel.common.function | This package contains functions that are available in the PDF specification. | 
| org.apache.pdfbox.pdmodel.documentinterchange.logicalstructure | The logical structure package provides a mechanism for incorporating
structural information about a document's content into a PDF file. | 
| org.apache.pdfbox.pdmodel.documentinterchange.markedcontent | The marked content package provides a mechanism for modeling marked-content
sequences. | 
| org.apache.pdfbox.pdmodel.documentinterchange.prepress | This package contains classes for prepress support in PDFBox. | 
| org.apache.pdfbox.pdmodel.documentinterchange.taggedpdf | The tagged PDF package provides a mechanism for incorporating "tags" (standard
structure types and attributes) into a PDF file. | 
| org.apache.pdfbox.pdmodel.encryption | The encryption package will handle the PDF document security handlers and the functionality of pluggable security handlers. | 
| org.apache.pdfbox.pdmodel.fdf | The fdf package will handle all of the logic used for FDF objects inside of the PDF/FDF document. | 
| org.apache.pdfbox.pdmodel.font | Classes to deal with font functionality in a PDF Document. | 
| org.apache.pdfbox.pdmodel.graphics | The PDModel graphics package deals with graphics states, operations, and parameters within the PDF document. | 
| org.apache.pdfbox.pdmodel.graphics.color | This package deals with colors that are stored in a PDF document. | 
| org.apache.pdfbox.pdmodel.graphics.optionalcontent | |
| org.apache.pdfbox.pdmodel.graphics.pattern | This package deals with patterns which are used instead of colors. | 
| org.apache.pdfbox.pdmodel.graphics.shading | This package deals with shadings which are used for filling instead of a color. | 
| org.apache.pdfbox.pdmodel.graphics.xobject | This package deals with images that are stored in a PDF document. | 
| org.apache.pdfbox.pdmodel.interactive.action | This package represents actions that can be performed in a PDF document. | 
| org.apache.pdfbox.pdmodel.interactive.action.type | This package contains all of the available PDF action types. | 
| org.apache.pdfbox.pdmodel.interactive.annotation | The annotation package contains classes that work with PDF annotation elements. | 
| org.apache.pdfbox.pdmodel.interactive.digitalsignature | The digitial signature library will manage signatures that are stored in the PDF document. | 
| org.apache.pdfbox.pdmodel.interactive.digitalsignature.visible | This is the visual signature part that help creating the visual representation for the digital signature. | 
| org.apache.pdfbox.pdmodel.interactive.documentnavigation.outline | The outline package allows for a PDF outline(bookmarks) to be created. | 
| org.apache.pdfbox.pdmodel.interactive.form | The interactive package contains classes that deal with interactive annotations such as textfields and buttons. | 
| org.apache.pdfbox.pdmodel.interactive.measurement | The measurement package contains classes that work with elements specifying measure properties. | 
| org.apache.pdfbox.pdmodel.interactive.pagenavigation | A package to allow provide access to PDF page navigation functionality. | 
| org.apache.pdfbox.pdmodel.interactive.viewerpreferences | A package to allow access to document viewing preferences. | 
| org.apache.pdfbox.pdmodel.markedcontent | |
| org.apache.pdfbox.util | This package contains utility classes that are used by the PDFBox project. | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | COSDictionaryLateBinding | 
| class  | COSStreamThis class represents a stream object in a PDF document. | 
| Modifier and Type | Method and Description | 
|---|---|
| COSDictionary | COSDocument. getEncryptionDictionary()This will get the encryption dictionary if the document is encrypted or null
 if the document is not encrypted. | 
| COSDictionary | COSDocument. getTrailer()This will get the document trailer. | 
| Modifier and Type | Method and Description | 
|---|---|
| List<COSDictionary> | COSDocument. getSignatureDictionaries()This will return a list of signature dictionaries as COSDictionary. | 
| List<COSDictionary> | COSDocument. getSignatureFields(boolean onlyEmptyFields)This will return a list of signature fields. | 
| Modifier and Type | Method and Description | 
|---|---|
| void | COSDictionary. addAll(COSDictionary dic)This will add all of the dictionarys keys/values to this dictionary. | 
| COSStream | COSDocument. createCOSStream(COSDictionary dictionary)Create a new COSStream using the underlying scratch file. | 
| void | COSDictionary. mergeInto(COSDictionary dic)This will add all of the dictionarys keys/values to this dictionary, but only if they don't already exist. | 
| void | COSDocument. setEncryptionDictionary(COSDictionary encDictionary)This will set the encryption dictionary, this should only be called when
 encrypting the document. | 
| void | COSDocument. setTrailer(COSDictionary newTrailer)// MIT added, maybe this should not be supported as trailer is a persistence construct. | 
| Object | ICOSVisitor. visitFromDictionary(COSDictionary obj)Notification of visit to dictionary object. | 
| Constructor and Description | 
|---|
| COSDictionary(COSDictionary dict)Copy Constructor. | 
| COSStream(COSDictionary dictionary,
         RandomAccess storage)Constructor. | 
| Constructor and Description | 
|---|
| DictionaryEncoding(COSDictionary fontEncoding)Constructor. | 
| Modifier and Type | Method and Description | 
|---|---|
| void | RunLengthDecodeFilter. decode(InputStream compressedData,
      OutputStream result,
      COSDictionary options,
      int filterIndex)This will decode some compressed data. | 
| void | LZWFilter. decode(InputStream compressedData,
      OutputStream result,
      COSDictionary options,
      int filterIndex)This will decode some compressed data. | 
| void | JPXFilter. decode(InputStream compressedData,
      OutputStream result,
      COSDictionary options,
      int filterIndex)Decode JPEG and JPEG2000 data using Java ImageIO library. | 
| void | JBIG2Filter. decode(InputStream compressedData,
      OutputStream result,
      COSDictionary options,
      int filterIndex)Decode JBIG2 data using Java ImageIO library. | 
| void | IdentityFilter. decode(InputStream compressedData,
      OutputStream result,
      COSDictionary options,
      int filterIndex)This will decode some compressed data. | 
| void | FlateFilter. decode(InputStream compressedData,
      OutputStream result,
      COSDictionary options,
      int filterIndex)This will decode some compressed data. | 
| void | Filter. decode(InputStream compressedData,
      OutputStream result,
      COSDictionary options,
      int filterIndex)This will decode some compressed data. | 
| void | DCTFilter. decode(InputStream compressedData,
      OutputStream result,
      COSDictionary options,
      int filterIndex)This will decode some compressed data. | 
| void | CryptFilter. decode(InputStream compressedData,
      OutputStream result,
      COSDictionary options,
      int filterIndex)This will decode some compressed data. | 
| void | CCITTFaxDecodeFilter. decode(InputStream compressedData,
      OutputStream result,
      COSDictionary options,
      int filterIndex)This will decode some compressed data. | 
| void | ASCIIHexFilter. decode(InputStream compressedData,
      OutputStream result,
      COSDictionary options,
      int filterIndex)This will decode some compressed data. | 
| void | ASCII85Filter. decode(InputStream compressedData,
      OutputStream result,
      COSDictionary options,
      int filterIndex)This will decode some compressed data. | 
| void | RunLengthDecodeFilter. encode(InputStream rawData,
      OutputStream result,
      COSDictionary options,
      int filterIndex)This will encode some data. | 
| void | LZWFilter. encode(InputStream rawData,
      OutputStream result,
      COSDictionary options,
      int filterIndex)This will encode some data. | 
| void | JPXFilter. encode(InputStream rawData,
      OutputStream result,
      COSDictionary options,
      int filterIndex)This will encode some data. | 
| void | JBIG2Filter. encode(InputStream rawData,
      OutputStream result,
      COSDictionary options,
      int filterIndex)This will encode some data. | 
| void | IdentityFilter. encode(InputStream rawData,
      OutputStream result,
      COSDictionary options,
      int filterIndex)This will encode some data. | 
| void | FlateFilter. encode(InputStream rawData,
      OutputStream result,
      COSDictionary options,
      int filterIndex)This will encode some data. | 
| void | Filter. encode(InputStream rawData,
      OutputStream result,
      COSDictionary options,
      int filterIndex)This will encode some data. | 
| void | DCTFilter. encode(InputStream rawData,
      OutputStream result,
      COSDictionary options,
      int filterIndex)This will encode some data. | 
| void | CryptFilter. encode(InputStream rawData,
      OutputStream result,
      COSDictionary options,
      int filterIndex)This will encode some data. | 
| void | CCITTFaxDecodeFilter. encode(InputStream rawData,
      OutputStream result,
      COSDictionary options,
      int filterIndex)This will encode some data. | 
| void | ASCIIHexFilter. encode(InputStream rawData,
      OutputStream result,
      COSDictionary options,
      int filterIndex)This will encode some data. | 
| void | ASCII85Filter. encode(InputStream rawData,
      OutputStream result,
      COSDictionary options,
      int filterIndex)This will encode some data. | 
| Modifier and Type | Method and Description | 
|---|---|
| COSDictionary | XrefTrailerResolver. getCurrentTrailer()Returns the trailer last set by  XrefTrailerResolver.setTrailer(COSDictionary). | 
| COSDictionary | XrefTrailerResolver. getFirstTrailer() | 
| COSDictionary | XrefTrailerResolver. getLastTrailer() | 
| COSDictionary | XrefTrailerResolver. getTrailer()Gets the resolved trailer. | 
| protected COSDictionary | BaseParser. parseCOSDictionary()This will parse a PDF dictionary. | 
| protected COSDictionary | ConformingPDFParser. readDictionaryBackwards() | 
| Modifier and Type | Method and Description | 
|---|---|
| void | PDFXRefStream. addTrailerInfo(COSDictionary trailerDict)Copy all Trailer Information to this file. | 
| protected void | NonSequentialPDFParser. decryptDictionary(COSDictionary dict,
                 long objNr,
                 long objGenNr) | 
| protected COSStream | NonSequentialPDFParser. parseCOSStream(COSDictionary dic,
              RandomAccess file)This will read a COSStream from the input stream using length attribute
 within dictionary. | 
| protected COSStream | BaseParser. parseCOSStream(COSDictionary dic,
              RandomAccess file)This will read a COSStream from the input stream. | 
| protected void | PDFParser. readVersionInTrailer(COSDictionary parsedTrailer)The document catalog can also have a /Version parameter which overrides the version specified
 in the header if, and only if it is greater. | 
| void | XrefTrailerResolver. setTrailer(COSDictionary trailer)Adds trailer information for current XRef object. | 
| Modifier and Type | Method and Description | 
|---|---|
| Object | COSWriter. visitFromDictionary(COSDictionary obj)visitFromDictionary method comment. | 
| Modifier and Type | Method and Description | 
|---|---|
| COSDictionary | PDResources. getCOSDictionary()This will get the underlying dictionary. | 
| COSDictionary | PDPage. getCOSDictionary()This will get the underlying dictionary that this class acts on. | 
| COSDictionary | PDDocumentNameDictionary. getCOSDictionary()Convert this standard java object to a COS object. | 
| COSDictionary | PDDocumentCatalog. getCOSDictionary()Convert this standard java object to a COS object. | 
| COSDictionary | PDDocumentNameDestinationDictionary. getCOSObject()Convert this standard java object to a COS object. | 
| COSDictionary | PDPageNode. getDictionary()This will get the underlying dictionary that this class acts on. | 
| COSDictionary | PDDocumentInformation. getDictionary()This will get the underlying dictionary that this object wraps. | 
| Modifier and Type | Method and Description | 
|---|---|
| protected PDNameTreeNode | PDJavascriptNameTreeNode. createChildNode(COSDictionary dic)Create a child node object. | 
| protected PDNameTreeNode | PDEmbeddedFilesNameTreeNode. createChildNode(COSDictionary dic)Create a child node object. | 
| protected PDNameTreeNode | PDDestinationNameTreeNode. createChildNode(COSDictionary dic)Create a child node object. | 
| Constructor and Description | 
|---|
| PDDestinationNameTreeNode(COSDictionary dic)Constructor. | 
| PDDocumentCatalog(PDDocument doc,
                 COSDictionary rootDictionary)Constructor. | 
| PDDocumentInformation(COSDictionary dic)Constructor that is used for a preexisting dictionary. | 
| PDDocumentNameDestinationDictionary(COSDictionary dict)Constructor. | 
| PDDocumentNameDictionary(PDDocumentCatalog cat,
                        COSDictionary names)Constructor. | 
| PDEmbeddedFilesNameTreeNode(COSDictionary dic)Constructor. | 
| PDJavascriptNameTreeNode(COSDictionary dic)Constructor. | 
| PDPage(COSDictionary pageDic)Creates a new instance of PDPage. | 
| PDPageNode(COSDictionary pages)Creates a new instance of PDPage. | 
| PDResources(COSDictionary resourceDictionary)Prepopulated resources. | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | COSStreamArrayThis will take an array of streams and sequence them together. | 
| Modifier and Type | Method and Description | 
|---|---|
| static COSDictionary | COSDictionaryMap. convert(Map<?,?> someMap)This will take a map<java.lang.String,org.apache.pdfbox.pdmodel.COSObjectable>
 and convert it into a COSDictionary<COSName,COSBase>. | 
| COSDictionary | PDPageLabelRange. getCOSDictionary()Returns the underlying dictionary. | 
| COSDictionary | PDNumberTreeNode. getCOSDictionary()Convert this standard java object to a COS object. | 
| COSDictionary | PDNameTreeNode. getCOSDictionary()Convert this standard java object to a COS object. | 
| protected COSDictionary | PDDictionaryWrapper. getCOSDictionary()Gets the COS dictionary. | 
| COSDictionary | COSStreamArray. getDictionary()This will get the dictionary that is associated with this stream. | 
| Modifier and Type | Method and Description | 
|---|---|
| static COSDictionaryMap<String,Object> | COSDictionaryMap. convertBasicTypesToMap(COSDictionary map)This will take a COS dictionary and convert it into COSDictionaryMap. | 
| protected PDNumberTreeNode | PDNumberTreeNode. createChildNode(COSDictionary dic)Create a child node object. | 
| protected PDNameTreeNode | PDNameTreeNode. createChildNode(COSDictionary dic)Create a child node object. | 
| Constructor and Description | 
|---|
| COSArrayList(E actualObject,
            COSBase item,
            COSDictionary dictionary,
            COSName dictionaryKey)This is a really special constructor. | 
| COSArrayList(E actualObject,
            COSBase item,
            COSDictionary dictionary,
            String dictionaryKey)Deprecated. 
 use the  COSArrayList.COSArrayList(Object, COSBase, COSDictionary, COSName)method instead | 
| COSDictionaryMap(Map<K,V> actualsMap,
                COSDictionary dicMap)Constructor for this map. | 
| PDDictionaryWrapper(COSDictionary dictionary)Creates a new instance with a given COS dictionary. | 
| PDNameTreeNode(COSDictionary dict,
              Class<? extends COSObjectable> valueClass)Constructor. | 
| PDNumberTreeNode(COSDictionary dict,
                Class<? extends COSObjectable> valueClass)Constructor. | 
| PDPageLabelRange(COSDictionary dict)Creates a new page label range object from the given dictionary. | 
| PDPageLabels(PDDocument document,
            COSDictionary dict)Creates an page label dictionary for a document using the information in
 the given COS dictionary. | 
| PDTypedDictionaryWrapper(COSDictionary dictionary)Creates a new instance with a given COS dictionary. | 
| Modifier and Type | Method and Description | 
|---|---|
| COSDictionary | PDComplexFileSpecification. getCOSDictionary()Convert this standard java object to a COS object. | 
| Constructor and Description | 
|---|
| PDComplexFileSpecification(COSDictionary dict)Constructor. | 
| Modifier and Type | Method and Description | 
|---|---|
| COSDictionary | PDFunction. getDictionary()Returns the stream. | 
| Modifier and Type | Method and Description | 
|---|---|
| protected COSDictionary | PDStructureNode. getCOSDictionary() | 
| protected COSDictionary | PDObjectReference. getCOSDictionary()Returns the underlying dictionary. | 
| protected COSDictionary | PDMarkedContentReference. getCOSDictionary() | 
| COSDictionary | PDMarkInfo. getDictionary()Convert this standard java object to a COS object. | 
| Modifier and Type | Method and Description | 
|---|---|
| static PDStructureNode | PDStructureNode. create(COSDictionary node)Creates a node in the structure tree. | 
| static PDAttributeObject | PDAttributeObject. create(COSDictionary dictionary)Creates an attribute object. | 
| Constructor and Description | 
|---|
| PDAttributeObject(COSDictionary dictionary)Creates a new attribute object with a given dictionary. | 
| PDDefaultAttributeObject(COSDictionary dictionary)Creates a default attribute object with a given dictionary. | 
| PDMarkedContentReference(COSDictionary dictionary)Constructor for an existing marked content reference. | 
| PDMarkInfo(COSDictionary dic)Constructor for an existing MarkInfo element. | 
| PDObjectReference(COSDictionary theDictionary)Constructor for an existing object reference. | 
| PDStructureElement(COSDictionary dic)Constructor for an existing structure element. | 
| PDStructureNode(COSDictionary dictionary)Constructor for an existing structure node. | 
| PDStructureTreeRoot(COSDictionary dic)Constructor for an existing structure element. | 
| PDUserAttributeObject(COSDictionary dictionary) | 
| PDUserProperty(COSDictionary dictionary,
              PDUserAttributeObject userAttributeObject)Creates a user property with a given dictionary. | 
| Modifier and Type | Method and Description | 
|---|---|
| COSDictionary | PDMarkedContent. getProperties()Gets the properties. | 
| Modifier and Type | Method and Description | 
|---|---|
| static PDMarkedContent | PDMarkedContent. create(COSName tag,
      COSDictionary properties)Creates a marked-content sequence. | 
| Constructor and Description | 
|---|
| PDMarkedContent(COSName tag,
               COSDictionary properties)Creates a new marked content object. | 
| Modifier and Type | Method and Description | 
|---|---|
| COSDictionary | PDBoxStyle. getDictionary()Convert this standard java object to a COS object. | 
| Constructor and Description | 
|---|
| PDBoxStyle(COSDictionary dic)Constructor for an existing BoxStyle element. | 
| Constructor and Description | 
|---|
| PDArtifactMarkedContent(COSDictionary properties) | 
| PDExportFormatAttributeObject(COSDictionary dictionary)Creates a new ExportFormat attribute object with a given dictionary. | 
| PDLayoutAttributeObject(COSDictionary dictionary)Creates a new Layout attribute object with a given dictionary. | 
| PDListAttributeObject(COSDictionary dictionary)Creates a new List attribute object with a given dictionary. | 
| PDPrintFieldAttributeObject(COSDictionary dictionary)Creates a new PrintField attribute object with a given dictionary. | 
| PDStandardAttributeObject(COSDictionary dictionary)Creates a new standard attribute object with a given dictionary. | 
| PDTableAttributeObject(COSDictionary dictionary)Creates a new Table attribute object with a given dictionary. | 
| Modifier and Type | Field and Description | 
|---|---|
| protected COSDictionary | PDCryptFilterDictionary. cryptFilterDictionaryCOS crypt filter dictionary. | 
| protected COSDictionary | PDEncryptionDictionary. encryptionDictionaryCOS encryption dictionary. | 
| Modifier and Type | Method and Description | 
|---|---|
| COSDictionary | PDEncryptionDictionary. getCOSDictionary()This will get the dictionary associated with this encryption dictionary. | 
| COSDictionary | PDCryptFilterDictionary. getCOSDictionary()This will get the dictionary associated with this crypt filter dictionary. | 
| Modifier and Type | Method and Description | 
|---|---|
| static PDEncryptionDictionary | PDEncryptionManager. getEncryptionDictionary(COSDictionary dictionary)Deprecated.  This will get the correct security handler for the encryption dictionary. | 
| Constructor and Description | 
|---|
| PDCryptFilterDictionary(COSDictionary d)creates a new crypt filter dictionary from the low level dictionary provided. | 
| PDEncryptionDictionary(COSDictionary d)creates a new encryption dictionary from the low level dictionary provided. | 
| PDStandardEncryption(COSDictionary dict)Deprecated.  Constructor from existing dictionary. | 
| Modifier and Type | Field and Description | 
|---|---|
| protected COSDictionary | FDFAnnotation. annotAnnotation dictionary. | 
| Modifier and Type | Method and Description | 
|---|---|
| COSDictionary | FDFTemplate. getCOSDictionary()Convert this standard java object to a COS object. | 
| COSDictionary | FDFPageInfo. getCOSDictionary()Convert this standard java object to a COS object. | 
| COSDictionary | FDFPage. getCOSDictionary()Convert this standard java object to a COS object. | 
| COSDictionary | FDFNamedPageReference. getCOSDictionary()Convert this standard java object to a COS object. | 
| COSDictionary | FDFJavaScript. getCOSDictionary()Convert this standard java object to a COS object. | 
| COSDictionary | FDFIconFit. getCOSDictionary()Convert this standard java object to a COS object. | 
| COSDictionary | FDFField. getCOSDictionary()Convert this standard java object to a COS object. | 
| COSDictionary | FDFDictionary. getCOSDictionary()Convert this standard java object to a COS object. | 
| COSDictionary | FDFCatalog. getCOSDictionary()Convert this standard java object to a COS object. | 
| COSDictionary | FDFAnnotation. getCOSDictionary()Convert this standard java object to a COS object. | 
| Modifier and Type | Method and Description | 
|---|---|
| static FDFAnnotation | FDFAnnotation. create(COSDictionary fdfDic)Create the correct FDFAnnotation. | 
| Modifier and Type | Field and Description | 
|---|---|
| protected COSDictionary | PDFont. fontThe cos dictionary for this font. | 
| Modifier and Type | Method and Description | 
|---|---|
| COSDictionary | PDFontDescriptorDictionary. getCOSDictionary()This will get the dictionary for this object. | 
| Modifier and Type | Method and Description | 
|---|---|
| static PDFont | PDFontFactory. createFont(COSDictionary dic)This will create the correct font based on information in the dictionary. | 
| static PDFont | PDFontFactory. createFont(COSDictionary dic,
          Map fontCache)Deprecated. 
 due to some side effects font caching is no longer supported, 
 use  PDFontFactory.createFont(COSDictionary)instead | 
| Constructor and Description | 
|---|
| PDCIDFont(COSDictionary fontDictionary)Constructor. | 
| PDCIDFontType0Font(COSDictionary fontDictionary)Constructor. | 
| PDCIDFontType2Font(COSDictionary fontDictionary)Constructor. | 
| PDFont(COSDictionary fontDictionary)Constructor. | 
| PDFontDescriptorDictionary(COSDictionary desc)Constructor. | 
| PDMMType1Font(COSDictionary fontDictionary)Constructor. | 
| PDSimpleFont(COSDictionary fontDictionary)Constructor. | 
| PDTrueTypeFont(COSDictionary fontDictionary)Constructor. | 
| PDType0Font(COSDictionary fontDictionary)Constructor. | 
| PDType1CFont(COSDictionary fontDictionary)Constructor. | 
| PDType1Font(COSDictionary fontDictionary)Constructor. | 
| PDType3Font(COSDictionary fontDictionary)Constructor. | 
| Modifier and Type | Method and Description | 
|---|---|
| COSDictionary | PDExtendedGraphicsState. getCOSDictionary()This will get the underlying dictionary that this class acts on. | 
| Constructor and Description | 
|---|
| PDExtendedGraphicsState(COSDictionary dictionary)Create a graphics state from an existing dictionary. | 
| PDShading(COSName name,
         COSDictionary shading)Constructor. | 
| Modifier and Type | Method and Description | 
|---|---|
| COSDictionary | PDDeviceNAttributes. getCOSDictionary()This will get the underlying cos dictionary. | 
| Constructor and Description | 
|---|
| PDDeviceNAttributes(COSDictionary attributes)Constructor. | 
| PDOutputIntent(COSDictionary dictionary) | 
| Constructor and Description | 
|---|
| PDOptionalContentGroup(COSDictionary dict)Creates a new instance based on a given  COSDictionary. | 
| PDOptionalContentProperties(COSDictionary props)Creates a new instance based on a given  COSDictionary. | 
| Modifier and Type | Method and Description | 
|---|---|
| COSDictionary | PDPatternResources. getCOSDictionary()This will get the underlying dictionary. | 
| Modifier and Type | Method and Description | 
|---|---|
| static PDPatternResources | PDPatternResources. create(COSDictionary resourceDictionary)Create the correct PD Model pattern based on the COS base pattern. | 
| Constructor and Description | 
|---|
| PDPatternResources(COSDictionary resourceDictionary)Prepopulated pattern resources. | 
| PDShadingPatternResources(COSDictionary resourceDictionary)Prepopulated pattern resources. | 
| PDTilingPatternResources(COSDictionary resourceDictionary)Prepopulated pattern resources. | 
| Modifier and Type | Method and Description | 
|---|---|
| COSDictionary | PDShadingResources. getCOSDictionary()This will get the underlying dictionary. | 
| Modifier and Type | Method and Description | 
|---|---|
| static PDShadingResources | PDShadingResources. create(COSDictionary resourceDictionary)Create the correct PD Model shading based on the COS base shading. | 
| Constructor and Description | 
|---|
| PDShadingResources(COSDictionary shadingDictionary)Constructor using the given shading dictionary. | 
| PDShadingType1(COSDictionary shadingDictionary)Constructor using the given shading dictionary. | 
| PDShadingType2(COSDictionary shadingDictionary)Constructor using the given shading dictionary. | 
| PDShadingType3(COSDictionary shadingDictionary)Constructor using the given shading dictionary. | 
| PDShadingType4(COSDictionary shadingDictionary)Constructor using the given shading dictionary. | 
| PDShadingType5(COSDictionary shadingDictionary)Constructor using the given shading dictionary. | 
| PDShadingType6(COSDictionary shadingDictionary)Constructor using the given shading dictionary. | 
| PDShadingType7(COSDictionary shadingDictionary)Constructor using the given shading dictionary. | 
| Modifier and Type | Method and Description | 
|---|---|
| COSDictionary | PDPixelMap. getDecodeParams()Deprecated. 
 Use  PDStream.getDecodeParms()instead | 
| Modifier and Type | Method and Description | 
|---|---|
| COSDictionary | PDPageAdditionalActions. getCOSDictionary()Convert this standard java object to a COS object. | 
| COSDictionary | PDFormFieldAdditionalActions. getCOSDictionary()Convert this standard java object to a COS object. | 
| COSDictionary | PDDocumentCatalogAdditionalActions. getCOSDictionary()Convert this standard java object to a COS object. | 
| COSDictionary | PDAnnotationAdditionalActions. getCOSDictionary()Convert this standard java object to a COS object. | 
| COSDictionary | PDAdditionalActions. getCOSDictionary()Convert this standard java object to a COS object. | 
| Modifier and Type | Method and Description | 
|---|---|
| static PDAction | PDActionFactory. createAction(COSDictionary action)This will create the correct type of action based on the type specified
 in the dictionary. | 
| Constructor and Description | 
|---|
| PDAdditionalActions(COSDictionary a)Constructor. | 
| PDAnnotationAdditionalActions(COSDictionary a)Constructor. | 
| PDDocumentCatalogAdditionalActions(COSDictionary a)Constructor. | 
| PDFormFieldAdditionalActions(COSDictionary a)Constructor. | 
| PDPageAdditionalActions(COSDictionary a)Constructor. | 
| Modifier and Type | Field and Description | 
|---|---|
| protected COSDictionary | PDAction. actionThe action dictionary. | 
| protected COSDictionary | PDWindowsLaunchParams. paramsThe params dictionary. | 
| Modifier and Type | Method and Description | 
|---|---|
| COSDictionary | PDWindowsLaunchParams. getCOSDictionary()Convert this standard java object to a COS object. | 
| COSDictionary | PDActionURI. getCOSDictionary()Convert this standard java object to a COS object. | 
| COSDictionary | PDActionRemoteGoTo. getCOSDictionary()Convert this standard java object to a COS object. | 
| COSDictionary | PDActionNamed. getCOSDictionary()Convert this standard java object to a COS object. | 
| COSDictionary | PDAction. getCOSDictionary()Convert this standard java object to a COS object. | 
| COSDictionary | PDURIDictionary. getDictionary()Returns the corresponding dictionary. | 
| Constructor and Description | 
|---|
| PDAction(COSDictionary a)Constructor. | 
| PDActionGoTo(COSDictionary a)Constructor. | 
| PDActionJavaScript(COSDictionary a)Constructor #2. | 
| PDActionLaunch(COSDictionary a)Constructor. | 
| PDActionNamed(COSDictionary a)Constructor. | 
| PDActionRemoteGoTo(COSDictionary a)Constructor. | 
| PDActionURI(COSDictionary a)Constructor. | 
| PDURIDictionary(COSDictionary dictionary)Constructor. | 
| PDWindowsLaunchParams(COSDictionary p)Constructor. | 
| Modifier and Type | Method and Description | 
|---|---|
| COSDictionary | PDExternalDataDictionary. getDictionary()returns the dictionary. | 
| COSDictionary | PDBorderStyleDictionary. getDictionary()returns the dictionary. | 
| COSDictionary | PDBorderEffectDictionary. getDictionary()returns the dictionary. | 
| COSDictionary | PDAppearanceDictionary. getDictionary()returns the dictionary. | 
| COSDictionary | PDAppearanceCharacteristicsDictionary. getDictionary()returns the dictionary. | 
| COSDictionary | PDAnnotation. getDictionary()returns the dictionary. | 
| Constructor and Description | 
|---|
| PDAnnotation(COSDictionary dict)Constructor. | 
| PDAnnotationFileAttachment(COSDictionary field)Creates a Link annotation from a COSDictionary, expected to be
 a correct object definition. | 
| PDAnnotationLine(COSDictionary field)Creates a Line annotation from a COSDictionary, expected to be a correct
 object definition. | 
| PDAnnotationLink(COSDictionary field)Creates a Link annotation from a COSDictionary, expected to be
 a correct object definition. | 
| PDAnnotationMarkup(COSDictionary dict)Constructor. | 
| PDAnnotationPopup(COSDictionary field)Creates a popup annotation from a COSDictionary, expected to be a correct
 object definition. | 
| PDAnnotationRubberStamp(COSDictionary field)Creates a Rubber Stamp annotation from a COSDictionary, expected to be
 a correct object definition. | 
| PDAnnotationSquareCircle(COSDictionary field)Creates a Line annotation from a COSDictionary, expected to be a correct
 object definition. | 
| PDAnnotationText(COSDictionary field)Creates a Text annotation from a COSDictionary, expected to be a correct
 object definition. | 
| PDAnnotationTextMarkup(COSDictionary field)Creates a TextMarkup annotation from a COSDictionary, expected to be a
 correct object definition. | 
| PDAnnotationUnknown(COSDictionary dic)Creates an arbitary annotation from a COSDictionary, expected to be
 a correct object definition for some sort of annotation. | 
| PDAnnotationWidget(COSDictionary field)Creates a PDWidget from a COSDictionary, expected to be
 a correct object definition for a field in PDF. | 
| PDAppearanceCharacteristicsDictionary(COSDictionary dict)Constructor. | 
| PDAppearanceDictionary(COSDictionary dict)Constructor. | 
| PDBorderEffectDictionary(COSDictionary dict)Constructor. | 
| PDBorderStyleDictionary(COSDictionary dict)Constructor. | 
| PDExternalDataDictionary(COSDictionary dictionary)Constructor. | 
| Modifier and Type | Method and Description | 
|---|---|
| COSDictionary | PDSignature. getDictionary()Convert this standard java object to a COS dictionary. | 
| COSDictionary | PDSeedValueTimeStamp. getDictionary()Convert this standard java object to a COS dictionary. | 
| COSDictionary | PDSeedValueMDP. getDictionary()Convert this standard java object to a COS dictionary. | 
| COSDictionary | PDSeedValue. getDictionary()Convert this standard java object to a COS dictionary. | 
| COSDictionary | PDPropBuildDataDict. getDictionary()Convert this standard java object to a COS dictionary. | 
| COSDictionary | PDPropBuild. getDictionary()Convert this standard java object to a COS dictionary. | 
| Constructor and Description | 
|---|
| PDPropBuild(COSDictionary dict)Constructor. | 
| PDPropBuildDataDict(COSDictionary dict)Constructor. | 
| PDSeedValue(COSDictionary dict)Constructor. | 
| PDSeedValueMDP(COSDictionary dict)Constructor. | 
| PDSeedValueTimeStamp(COSDictionary dict)Constructor. | 
| PDSignature(COSDictionary dict)Constructor. | 
| Modifier and Type | Method and Description | 
|---|---|
| COSDictionary | PDFTemplateStructure. getAcroFormDictionary()Gets Dictionary of AcroForm. | 
| COSDictionary | PDFTemplateStructure. getWidgetDictionary()Gets Widget Dictionary. | 
| Modifier and Type | Method and Description | 
|---|---|
| void | PDFTemplateStructure. setAcroFormDictionary(COSDictionary acroFormDictionary)Acroform have its Dictionary, so we here set
 the Dictionary  which is in this location:
  AcroForm/DR  | 
| void | PDFTemplateStructure. setWidgetDictionary(COSDictionary widgetDictionary)Sets Widget Dictionary. | 
| Modifier and Type | Field and Description | 
|---|---|
| protected COSDictionary | PDOutlineNode. nodeThe dictionary for this node. | 
| Modifier and Type | Method and Description | 
|---|---|
| COSDictionary | PDOutlineNode. getCOSDictionary()Convert this standard java object to a COS object. | 
| Constructor and Description | 
|---|
| PDDocumentOutline(COSDictionary dic)Constructor for an existing document outline. | 
| PDOutlineItem(COSDictionary dic)Constructor for an existing outline item. | 
| PDOutlineNode(COSDictionary dict)Default Constructor. | 
| Modifier and Type | Method and Description | 
|---|---|
| COSDictionary | PDField. getDictionary()This will get the dictionary associated with this field. | 
| COSDictionary | PDAcroForm. getDictionary()This will get the dictionary that this form wraps. | 
| Modifier and Type | Method and Description | 
|---|---|
| static PDField | PDFieldFactory. createField(PDAcroForm acroForm,
           COSDictionary field)This method creates a COSField subclass from the given field. | 
| Constructor and Description | 
|---|
| PDAcroForm(PDDocument doc,
          COSDictionary form)Constructor. | 
| PDCheckbox(PDAcroForm theAcroForm,
          COSDictionary field) | 
| PDChoiceButton(PDAcroForm theAcroForm,
              COSDictionary field) | 
| PDChoiceField(PDAcroForm theAcroForm,
             COSDictionary field) | 
| PDField(PDAcroForm theAcroForm,
       COSDictionary field)Creates a COSField from a COSDictionary, expected to be a correct object definition for a field in PDF. | 
| PDPushButton(PDAcroForm theAcroForm,
            COSDictionary field) | 
| PDRadioCollection(PDAcroForm theAcroForm,
                 COSDictionary field) | 
| PDSignature(PDAcroForm theAcroForm,
           COSDictionary field)Deprecated.  | 
| PDSignatureField(PDAcroForm theAcroForm,
                COSDictionary field) | 
| PDTextbox(PDAcroForm theAcroForm,
         COSDictionary field) | 
| PDUnknownField(PDAcroForm theAcroForm,
              COSDictionary field) | 
| PDVariableText(PDAcroForm theAcroForm,
              COSDictionary field) | 
| Modifier and Type | Method and Description | 
|---|---|
| COSDictionary | PDViewportDictionary. getDictionary()This will return the corresponding dictionary. | 
| COSDictionary | PDNumberFormatDictionary. getDictionary()This will return the dictionary. | 
| COSDictionary | PDMeasureDictionary. getDictionary()This will return the corresponding dictionary. | 
| Constructor and Description | 
|---|
| PDMeasureDictionary(COSDictionary dictionary)Constructor. | 
| PDNumberFormatDictionary(COSDictionary dictionary)Constructor. | 
| PDRectlinearMeasureDictionary(COSDictionary dictionary)Constructor. | 
| PDViewportDictionary(COSDictionary dictionary)Constructor. | 
| Modifier and Type | Method and Description | 
|---|---|
| COSDictionary | PDThreadBead. getDictionary()This will get the underlying dictionary that this object wraps. | 
| COSDictionary | PDThread. getDictionary()This will get the underlying dictionary that this object wraps. | 
| Constructor and Description | 
|---|
| PDThread(COSDictionary t)Constructor that is used for a preexisting dictionary. | 
| PDThreadBead(COSDictionary b)Constructor that is used for a preexisting dictionary. | 
| Modifier and Type | Method and Description | 
|---|---|
| COSDictionary | PDViewerPreferences. getDictionary()This will get the underlying dictionary that this object wraps. | 
| Constructor and Description | 
|---|
| PDViewerPreferences(COSDictionary dic)Constructor that is used for a preexisting dictionary. | 
| Constructor and Description | 
|---|
| PDPropertyList(COSDictionary dict)Creates a new instance based on a given  COSDictionary. | 
| Modifier and Type | Method and Description | 
|---|---|
| COSDictionary | ImageParameters. getDictionary()This will get the dictionary that stores the image parameters. | 
| Modifier and Type | Method and Description | 
|---|---|
| void | PDFMarkedContentExtractor. beginMarkedContentSequence(COSName tag,
                          COSDictionary properties) | 
| static boolean | BitFlagHelper. getFlag(COSDictionary dic,
       COSName field,
       int bitFlag)Gets the boolean value from the flags at the given bit
 position. | 
| static boolean | BitFlagHelper. getFlag(COSDictionary dic,
       String field,
       int bitFlag)Deprecated. 
 use  BitFlagHelper.getFlag(COSDictionary, COSName, int)using COSName constants instead | 
| static void | BitFlagHelper. setFlag(COSDictionary dic,
       COSName field,
       int bitFlag,
       boolean value)Sets the given boolean value at bitPos in the flags. | 
| static void | BitFlagHelper. setFlag(COSDictionary dic,
       String field,
       int bitFlag,
       boolean value)Deprecated. 
 use  BitFlagHelper.setFlag(COSDictionary, COSName, int, boolean)using COSName constants instead | 
| Constructor and Description | 
|---|
| ImageParameters(COSDictionary params)Constructor. | 
Copyright © 2002–2016 The Apache Software Foundation. All rights reserved.