Uses of Class
org.apache.pdfbox.cos.COSBase
-
Packages that use COSBase 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.io This package contains IO streams.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.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.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.documentnavigation.destination The destination package allows destinations into a pdf document to be specified.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.org.apache.pdfbox.util.operator This package contains implementations of all of the PDF operators.org.apache.pdfbox.util.operator.pagedrawer This package contains implementations of all of the PDF operators. -
-
Uses of COSBase in org.apache.pdfbox.cos
Subclasses of COSBase in org.apache.pdfbox.cos Modifier and Type Class Description classCOSArrayAn array of PDFBase objects as part of the PDF document.classCOSBooleanThis class represents a boolean value in the PDF document.classCOSDictionaryThis class represents a dictionary where name/value pairs reside.classCOSDictionaryLateBindingclassCOSDocumentThis is the in-memory representation of the PDF document.classCOSFloatThis class represents a floating point number in a PDF document.classCOSIntegerThis class represents an integer number in a PDF document.classCOSNameThis class represents a PDF named object.classCOSNullThis class represents a null PDF object.classCOSNumberThis class represents an abstract number in a PDF document.classCOSObjectThis class represents a PDF object.classCOSStreamThis class represents a stream object in a PDF document.classCOSStringThis represents a string object in a PDF document.classCOSUnreadFields in org.apache.pdfbox.cos with type parameters of type COSBase Modifier and Type Field Description protected java.util.Map<COSName,COSBase>COSDictionary. itemsThe name-value pairs of this dictionary.Methods in org.apache.pdfbox.cos that return COSBase Modifier and Type Method Description COSBaseCOSArray. get(int index)This will get an object from the array.COSBaseCOSBase. getCOSObject()Convert this standard java object to a COS object.COSBaseCOSDictionary. getDictionaryObject(java.lang.String key)This will get an object from this dictionary.COSBaseCOSDictionary. getDictionaryObject(java.lang.String[] keyList)This is a special case of getDictionaryObject that takes multiple keys, it will handle the situation where multiple keys could get the same value, ie if either CS or ColorSpace is used to get the colorspace.COSBaseCOSDictionary. getDictionaryObject(java.lang.String firstKey, java.lang.String secondKey)Deprecated.useCOSDictionary.getDictionaryObject(COSName, COSName)using COSName constants insteadCOSBaseCOSDictionary. getDictionaryObject(COSName key)This will get an object from this dictionary.COSBaseCOSDictionary. getDictionaryObject(COSName firstKey, COSName secondKey)This is a special case of getDictionaryObject that takes multiple keys, it will handle the situation where multiple keys could get the same value, ie if either CS or ColorSpace is used to get the colorspace.COSBaseCOSDictionaryLateBinding. getDictionaryObject(COSName key)This will get an object from this dictionary.COSBaseCOSObject. getDictionaryObject(COSName key)This will get the dictionary object in this object that has the name key and if it is a pdfobjref then it will dereference that and return it.COSBaseCOSStream. getFilters()This will return the filters to apply to the byte stream.COSBaseCOSDictionary. getItem(java.lang.String key)This will do a lookup into the dictionary.COSBaseCOSDictionary. getItem(COSName key)This will do a lookup into the dictionary.COSBaseCOSObject. getItem(COSName key)This will get the dictionary object in this object that has the name key.COSBaseCOSArray. getObject(int index)This will get an object from the array.COSBaseCOSObject. getObject()This will get the object that this object encapsulates.COSBaseCOSDictionary. getObjectFromPath(java.lang.String objPath)Nice method, gives you every object you want Arrays works properly too.COSBaseCOSArray. remove(int i)This will remove an element from the array.Methods in org.apache.pdfbox.cos that return types with arguments of type COSBase Modifier and Type Method Description java.util.Set<java.util.Map.Entry<COSName,COSBase>>COSDictionary. entrySet()Returns the name-value entries in this dictionary.java.util.Collection<COSBase>COSDictionary. getValues()This will get all of the values for the dictionary.java.util.Iterator<COSBase>COSArray. iterator()Get access to the list.Methods in org.apache.pdfbox.cos with parameters of type COSBase Modifier and Type Method Description voidCOSArray. add(int i, COSBase object)Add the specified object at the ith location and push the rest to the right.voidCOSArray. add(COSBase object)This will add an object to the array.java.io.OutputStreamCOSStream. createFilteredStream(COSBase expectedLength)This will create a new stream for which filtered byte should be written to.voidCOSArray. growToSize(int size, COSBase object)This will add the object until the size of the array is at least as large as the parameter.intCOSArray. indexOf(COSBase object)This will return the index of the entry or -1 if it is not found.intCOSArray. indexOfObject(COSBase object)This will return the index of the entry or -1 if it is not found.booleanCOSArray. remove(COSBase o)This will remove an element from the array.booleanCOSArray. removeObject(COSBase o)This will remove an element from the array.voidCOSArray. set(int index, COSBase object)This will set an object at a specific index.voidCOSStream. setFilters(COSBase filters)set the filters to be applied to the stream.voidCOSDictionary. setItem(java.lang.String key, COSBase value)This will set an item in the dictionary.voidCOSDictionary. setItem(COSName key, COSBase value)This will set an item in the dictionary.voidCOSObject. setObject(COSBase object)This will set the object that this object encapsulates.Method parameters in org.apache.pdfbox.cos with type arguments of type COSBase Modifier and Type Method Description voidCOSArray. addAll(int i, java.util.Collection<COSBase> objectList)Add the specified object at the ith location and push the rest to the right.voidCOSArray. addAll(java.util.Collection<COSBase> objectsList)This will add an object to the array.voidCOSArray. removeAll(java.util.Collection<COSBase> objectsList)This will remove all of the objects in the collection.voidCOSArray. retainAll(java.util.Collection<COSBase> objectsList)This will retain all of the objects in the collection.Constructors in org.apache.pdfbox.cos with parameters of type COSBase Constructor Description COSObject(COSBase object)Constructor. -
Uses of COSBase in org.apache.pdfbox.encoding
Methods in org.apache.pdfbox.encoding that return COSBase Modifier and Type Method Description COSBaseAFMEncoding. getCOSObject()Convert this standard java object to a COS object.COSBaseDictionaryEncoding. getCOSObject()Convert this standard java object to a COS object.COSBaseMacOSRomanEncoding. getCOSObject()Convert this standard java object to a COS object.COSBaseMacRomanEncoding. getCOSObject()Convert this standard java object to a COS object.COSBasePdfDocEncoding. getCOSObject()Convert this standard java object to a COS object.COSBaseStandardEncoding. getCOSObject()Convert this standard java object to a COS object.COSBaseType1Encoding. getCOSObject()Convert this standard java object to a COS object.COSBaseWinAnsiEncoding. getCOSObject()Convert this standard java object to a COS object. -
Uses of COSBase in org.apache.pdfbox.io
Methods in org.apache.pdfbox.io that return COSBase Modifier and Type Method Description COSBaseRandomAccessFileOutputStream. getExpectedLength()This will get the length that the PDF document specified this stream should be.Methods in org.apache.pdfbox.io with parameters of type COSBase Modifier and Type Method Description voidRandomAccessFileOutputStream. setExpectedLength(COSBase value)This will set the expected length of this stream. -
Uses of COSBase in org.apache.pdfbox.pdfparser
Methods in org.apache.pdfbox.pdfparser that return COSBase Modifier and Type Method Description COSBaseConformingPDFParser. getObject(long objectNumber, long generation)protected COSBaseBaseParser. parseDirObject()This will parse a directory object from the stream.protected COSBaseNonSequentialPDFParser. parseObjectDynamically(int objNr, int objGenNr, boolean requireExistingNotCompressedObj)This will parse the next object from the stream and add it to the local state.protected COSBaseNonSequentialPDFParser. parseObjectDynamically(COSObject obj, boolean requireExistingNotCompressedObj)This will parse the next object from the stream and add it to the local state.protected COSBaseConformingPDFParser. processCosObject(java.lang.String string)protected COSBaseConformingPDFParser. readObject()This actually reads the object data.COSBaseConformingPDFParser. readObject(long objectNumber, long generation)This will read an object from the inputFile at whatever our currentOffset is.protected COSBaseConformingPDFParser. readObjectBackwards()Methods in org.apache.pdfbox.pdfparser with parameters of type COSBase Modifier and Type Method Description protected voidNonSequentialPDFParser. decrypt(COSBase pb, int objNr, int objGenNr)Decrypts given object. -
Uses of COSBase in org.apache.pdfbox.pdfwriter
Methods in org.apache.pdfbox.pdfwriter that return COSBase Modifier and Type Method Description COSBaseCOSWriterXRefEntry. getObject()This will get the object.Methods in org.apache.pdfbox.pdfwriter that return types with arguments of type COSBase Modifier and Type Method Description java.util.Map<COSBase,COSObjectKey>COSWriter. getObjectKeys()This will get all available object keys.Methods in org.apache.pdfbox.pdfwriter with parameters of type COSBase Modifier and Type Method Description voidCOSWriter. doWriteObject(COSBase obj)This will write a COS object.voidCOSWriter. writeReference(COSBase obj)visitFromObjRef method comment.Constructors in org.apache.pdfbox.pdfwriter with parameters of type COSBase Constructor Description COSWriterXRefEntry(long start, COSBase obj, COSObjectKey keyValue)Constructor. -
Uses of COSBase in org.apache.pdfbox.pdmodel
Methods in org.apache.pdfbox.pdmodel that return COSBase Modifier and Type Method Description COSBasePDDocumentCatalog. getCOSObject()Convert this standard java object to a COS object.COSBasePDDocumentInformation. getCOSObject()Convert this standard java object to a COS object.COSBasePDDocumentNameDictionary. getCOSObject()Convert this standard java object to a COS object.COSBasePDPage. getCOSObject()Convert this standard java object to a COS object.COSBasePDPageNode. getCOSObject()Convert this standard java object to a COS object.COSBasePDResources. getCOSObject()Convert this standard java object to a COS object.COSBaseConformingPDDocument. getObjectFromPool(long number, long generation)This will get an object from the pool.COSBaseConformingPDDocument. getObjectFromPool(COSObjectKey key)This will get an object from the pool.Methods in org.apache.pdfbox.pdmodel with parameters of type COSBase Modifier and Type Method Description protected COSObjectablePDDestinationNameTreeNode. convertCOSToPD(COSBase base)Method to convert the COS value in the name tree to the PD Model object.protected COSObjectablePDEmbeddedFilesNameTreeNode. convertCOSToPD(COSBase base)Method to convert the COS value in the name tree to the PD Model object.protected COSObjectablePDJavascriptNameTreeNode. convertCOSToPD(COSBase base)Method to convert the COS value in the name tree to the PD Model object.voidConformingPDDocument. putObjectInPool(COSBase object, long number, long generation) -
Uses of COSBase in org.apache.pdfbox.pdmodel.common
Subclasses of COSBase in org.apache.pdfbox.pdmodel.common Modifier and Type Class Description classCOSStreamArrayThis will take an array of streams and sequence them together.Methods in org.apache.pdfbox.pdmodel.common that return COSBase Modifier and Type Method Description COSBaseCOSStreamArray. get(int index)This will get a stream (or the reference to a stream) from the array.COSBaseCOSObjectable. getCOSObject()Convert this standard java object to a COS object.COSBasePDDictionaryWrapper. getCOSObject()Convert this standard java object to a COS object.COSBasePDMatrix. getCOSObject()Convert this standard java object to a COS object.COSBasePDMemoryStream. getCOSObject()Convert this standard java object to a COS object.COSBasePDNameTreeNode. getCOSObject()Convert this standard java object to a COS object.COSBasePDNumberTreeNode. getCOSObject()Convert this standard java object to a COS object.COSBasePDPageLabelRange. getCOSObject()COSBasePDPageLabels. getCOSObject()Convert this standard java object to a COS object.COSBasePDRange. getCOSObject()Convert this standard java object to a COS object.COSBasePDRectangle. getCOSObject()Convert this standard java object to a COS object.COSBasePDStream. getCOSObject()Convert this standard java object to a COS object.COSBasePDTextStream. getCOSObject()Convert this standard java object to a COS object.COSBaseCOSStreamArray. getDictionaryObject(COSName key)This will get an object from this streams dictionary and dereference it if necessary.COSBaseCOSStreamArray. getFilters()This will return the filters to apply to the byte stream the method will returnCOSBaseDualCOSObjectable. getFirstCOSObject()Convert this standard java object to a COS object.COSBasePDNamedTextStream. getFirstCOSObject()Convert this standard java object to a COS object.COSBaseCOSStreamArray. getItem(COSName key)This will get an object from this streams dictionary.COSBaseDualCOSObjectable. getSecondCOSObject()Convert this standard java object to a COS object.COSBasePDNamedTextStream. getSecondCOSObject()Convert this standard java object to a COS object.Methods in org.apache.pdfbox.pdmodel.common with parameters of type COSBase Modifier and Type Method Description protected COSObjectablePDNameTreeNode. convertCOSToPD(COSBase base)Method to convert the COS value in the name tree to the PD Model object.protected COSObjectablePDNumberTreeNode. convertCOSToPD(COSBase base)Method to convert the COS value in the name tree to the PD Model object.java.io.OutputStreamCOSStreamArray. createFilteredStream(COSBase expectedLength)This will create a new stream for which filtered byte should be written to.static PDStreamPDStream. createFromCOS(COSBase base)Create a pd stream from either a regular COSStream on a COSArray of cos streams.static PDTextStreamPDTextStream. createTextStream(COSBase base)This will create the text stream object.voidCOSStreamArray. setFilters(COSBase filters)set the filters to be applied to the stream.Constructors in org.apache.pdfbox.pdmodel.common with parameters of type COSBase Constructor Description COSArrayList(E actualObject, COSBase item, COSDictionary dictionary, java.lang.String dictionaryKey)Deprecated.use theCOSArrayList(Object, COSBase, COSDictionary, COSName)method insteadCOSArrayList(E actualObject, COSBase item, COSDictionary dictionary, COSName dictionaryKey)This is a really special constructor.PDNamedTextStream(COSName name, COSBase str)Constructor. -
Uses of COSBase in org.apache.pdfbox.pdmodel.common.filespecification
Methods in org.apache.pdfbox.pdmodel.common.filespecification that return COSBase Modifier and Type Method Description COSBasePDComplexFileSpecification. getCOSObject()Convert this standard java object to a COS object.COSBasePDSimpleFileSpecification. getCOSObject()Convert this standard java object to a COS object.Methods in org.apache.pdfbox.pdmodel.common.filespecification with parameters of type COSBase Modifier and Type Method Description static PDFileSpecificationPDFileSpecification. createFS(COSBase base)A file specfication can either be a COSString or a COSDictionary. -
Uses of COSBase in org.apache.pdfbox.pdmodel.common.function
Methods in org.apache.pdfbox.pdmodel.common.function that return COSBase Modifier and Type Method Description COSBasePDFunction. getCOSObject()Returns the COSObject.Methods in org.apache.pdfbox.pdmodel.common.function with parameters of type COSBase Modifier and Type Method Description static PDFunctionPDFunction. create(COSBase function)Create the correct PD Model function based on the COS base function.Constructors in org.apache.pdfbox.pdmodel.common.function with parameters of type COSBase Constructor Description PDFunction(COSBase function)Constructor.PDFunctionType0(COSBase function)Constructor.PDFunctionType2(COSBase function)Constructor.PDFunctionType3(COSBase functionStream)Constructor.PDFunctionType4(COSBase functionStream)Constructor. -
Uses of COSBase in org.apache.pdfbox.pdmodel.documentinterchange.logicalstructure
Methods in org.apache.pdfbox.pdmodel.documentinterchange.logicalstructure that return COSBase Modifier and Type Method Description COSBasePDDefaultAttributeObject. getAttributeValue(java.lang.String attrName)Gets the attribute value for a given name.protected COSBasePDDefaultAttributeObject. getAttributeValue(java.lang.String attrName, COSBase defaultValue)Gets the attribute value for a given name.COSBasePDMarkedContentReference. getCOSObject()Convert this standard java object to a COS object.COSBasePDMarkInfo. getCOSObject()Convert this standard java object to a COS object.COSBasePDObjectReference. getCOSObject()Convert this standard java object to a COS object.COSBasePDStructureNode. getCOSObject()Convert this standard java object to a COS object.COSBasePDStructureTreeRoot. getK()Returns the K entry.COSBasePDUserProperty. getValue()Returns the property value.Methods in org.apache.pdfbox.pdmodel.documentinterchange.logicalstructure with parameters of type COSBase Modifier and Type Method Description protected voidPDStructureNode. appendKid(COSBase object)Appends a COS base kid.protected java.lang.ObjectPDStructureNode. createObject(COSBase kid)Creates an object for a kid of this structure node.protected COSBasePDDefaultAttributeObject. getAttributeValue(java.lang.String attrName, COSBase defaultValue)Gets the attribute value for a given name.protected voidPDStructureNode. insertBefore(COSBase newKid, java.lang.Object refKid)Inserts an COS base kid before a reference kid.protected voidPDAttributeObject. potentiallyNotifyChanged(COSBase oldBase, COSBase newBase)Notifies the attribute object change listeners if the attribute is changed.protected booleanPDStructureNode. removeKid(COSBase object)Removes a COS base kid.voidPDDefaultAttributeObject. setAttribute(java.lang.String attrName, COSBase attrValue)Sets an attribute.voidPDStructureTreeRoot. setK(COSBase k)Sets the K entry.voidPDUserProperty. setValue(COSBase value)Sets the property value. -
Uses of COSBase in org.apache.pdfbox.pdmodel.documentinterchange.prepress
Methods in org.apache.pdfbox.pdmodel.documentinterchange.prepress that return COSBase Modifier and Type Method Description COSBasePDBoxStyle. getCOSObject()Convert this standard java object to a COS object. -
Uses of COSBase in org.apache.pdfbox.pdmodel.documentinterchange.taggedpdf
Methods in org.apache.pdfbox.pdmodel.documentinterchange.taggedpdf that return COSBase Modifier and Type Method Description COSBasePDFourColours. getCOSObject()Convert this standard java object to a COS object. -
Uses of COSBase in org.apache.pdfbox.pdmodel.fdf
Methods in org.apache.pdfbox.pdmodel.fdf that return COSBase Modifier and Type Method Description COSBaseFDFAnnotation. getCOSObject()Convert this standard java object to a COS object.COSBaseFDFCatalog. getCOSObject()Convert this standard java object to a COS object.COSBaseFDFDictionary. getCOSObject()Convert this standard java object to a COS object.COSBaseFDFField. getCOSObject()Convert this standard java object to a COS object.COSBaseFDFIconFit. getCOSObject()Convert this standard java object to a COS object.COSBaseFDFJavaScript. getCOSObject()Convert this standard java object to a COS object.COSBaseFDFNamedPageReference. getCOSObject()Convert this standard java object to a COS object.COSBaseFDFOptionElement. getCOSObject()Convert this standard java object to a COS object.COSBaseFDFPage. getCOSObject()Convert this standard java object to a COS object.COSBaseFDFPageInfo. getCOSObject()Convert this standard java object to a COS object.COSBaseFDFTemplate. getCOSObject()Convert this standard java object to a COS object. -
Uses of COSBase in org.apache.pdfbox.pdmodel.font
Methods in org.apache.pdfbox.pdmodel.font that return COSBase Modifier and Type Method Description COSBasePDFont. getCOSObject()Convert this standard java object to a COS object.COSBasePDFontDescriptorDictionary. getCOSObject()Convert this standard java object to a COS object.protected COSBasePDFont. getEncoding()cache theCOSName.ENCODINGobject from the font's dictionary since it is called so often.COSBasePDSimpleFont. getToUnicode()This will get the ToUnicode object.Methods in org.apache.pdfbox.pdmodel.font with parameters of type COSBase Modifier and Type Method Description protected voidPDFont. setEncoding(COSBase encodingValue)Set the encoding object from the fonts dictionary.voidPDSimpleFont. setToUnicode(COSBase unicode)This will set the ToUnicode object. -
Uses of COSBase in org.apache.pdfbox.pdmodel.graphics
Methods in org.apache.pdfbox.pdmodel.graphics that return COSBase Modifier and Type Method Description COSBasePDExtendedGraphicsState. getCOSObject()Convert this standard java object to a COS object.COSBasePDFontSetting. getCOSObject()Convert this standard java object to a COS object.COSBasePDLineDashPattern. getCOSObject()Convert this standard java object to a COS object.COSBasePDShading. getCOSObject()Convert this standard java object to a COS object. -
Uses of COSBase in org.apache.pdfbox.pdmodel.graphics.color
Methods in org.apache.pdfbox.pdmodel.graphics.color that return COSBase Modifier and Type Method Description COSBasePDCalGray. getCOSObject()Convert this standard java object to a COS object.COSBasePDCalRGB. getCOSObject()Convert this standard java object to a COS object.COSBasePDColorSpace. getCOSObject()Convert this standard java object to a COS object.COSBasePDDeviceN. getCOSObject()COSBasePDGamma. getCOSObject()Convert this standard java object to a COS object.COSBasePDICCBased. getCOSObject()Convert this standard java object to a COS object.COSBasePDIndexed. getCOSObject()COSBasePDLab. getCOSObject()Convert this standard java object to a COS object.COSBasePDOutputIntent. getCOSObject()COSBasePDSeparation. getCOSObject()COSBasePDTristimulus. getCOSObject()Convert this standard java object to a COS object.Methods in org.apache.pdfbox.pdmodel.graphics.color with parameters of type COSBase Modifier and Type Method Description COSArrayPDSeparation. calculateColorValues(COSBase tintValue)Returns the components of the color in the alternate colorspace for the given tint value.static PDColorSpacePDColorSpaceFactory. createColorSpace(COSBase colorSpace)This will create the correct color space given the name.static PDColorSpacePDColorSpaceFactory. createColorSpace(COSBase colorSpace, java.util.Map<java.lang.String,PDColorSpace> colorSpaces)This will create the correct color space given the name.static PDColorSpacePDColorSpaceFactory. createColorSpace(COSBase colorSpace, java.util.Map<java.lang.String,PDColorSpace> colorSpaces, java.util.Map<java.lang.String,PDPatternResources> patterns)This will create the correct color space given the name.Method parameters in org.apache.pdfbox.pdmodel.graphics.color with type arguments of type COSBase Modifier and Type Method Description COSArrayPDDeviceN. calculateColorValues(java.util.List<COSBase> tintValues)Returns the components of the color in the alternate colorspace for the given tint value. -
Uses of COSBase in org.apache.pdfbox.pdmodel.graphics.optionalcontent
Methods in org.apache.pdfbox.pdmodel.graphics.optionalcontent that return COSBase Modifier and Type Method Description COSBasePDOptionalContentGroup. getCOSObject()Convert this standard java object to a COS object.COSBasePDOptionalContentProperties. getCOSObject()Convert this standard java object to a COS object. -
Uses of COSBase in org.apache.pdfbox.pdmodel.graphics.pattern
Methods in org.apache.pdfbox.pdmodel.graphics.pattern that return COSBase Modifier and Type Method Description COSBasePDPatternResources. getCOSObject()Convert this standard java object to a COS object. -
Uses of COSBase in org.apache.pdfbox.pdmodel.graphics.shading
Methods in org.apache.pdfbox.pdmodel.graphics.shading that return COSBase Modifier and Type Method Description COSBasePDShadingResources. getCOSObject()Convert this standard java object to a COS object. -
Uses of COSBase in org.apache.pdfbox.pdmodel.graphics.xobject
Methods in org.apache.pdfbox.pdmodel.graphics.xobject that return COSBase Modifier and Type Method Description COSBasePDXObject. getCOSObject()Returns the stream.COSBasePDXObjectImage. getMask()Returns the optional mask of a XObjectImage if there is one.Methods in org.apache.pdfbox.pdmodel.graphics.xobject with parameters of type COSBase Modifier and Type Method Description protected static PDXObjectPDXObject. commonXObjectCreation(COSBase xobject, boolean isThumb)Create the correct xobject from the cos base.static PDXObjectPDXObjectImage. createThumbnailXObject(COSBase xobject)Create the correct thumbnail from the cos base.static PDXObjectPDXObject. createXObject(COSBase xobject)Create the correct xobject from the cos base. -
Uses of COSBase in org.apache.pdfbox.pdmodel.interactive.action
Methods in org.apache.pdfbox.pdmodel.interactive.action that return COSBase Modifier and Type Method Description COSBasePDAdditionalActions. getCOSObject()Convert this standard java object to a COS object.COSBasePDAnnotationAdditionalActions. getCOSObject()Convert this standard java object to a COS object.COSBasePDDocumentCatalogAdditionalActions. getCOSObject()Convert this standard java object to a COS object.COSBasePDFormFieldAdditionalActions. getCOSObject()Convert this standard java object to a COS object.COSBasePDPageAdditionalActions. getCOSObject()Convert this standard java object to a COS object. -
Uses of COSBase in org.apache.pdfbox.pdmodel.interactive.action.type
Methods in org.apache.pdfbox.pdmodel.interactive.action.type that return COSBase Modifier and Type Method Description COSBasePDAction. getCOSObject()Convert this standard java object to a COS object.COSBasePDActionNamed. getCOSObject()Convert this standard java object to a COS object.COSBasePDActionRemoteGoTo. getCOSObject()Convert this standard java object to a COS object.COSBasePDActionURI. getCOSObject()Convert this standard java object to a COS object.COSBasePDURIDictionary. getCOSObject()Convert this standard java object to a COS object.COSBasePDWindowsLaunchParams. getCOSObject()Convert this standard java object to a COS object.COSBasePDActionRemoteGoTo. getD()This will get the destination to jump to.Methods in org.apache.pdfbox.pdmodel.interactive.action.type with parameters of type COSBase Modifier and Type Method Description voidPDActionRemoteGoTo. setD(COSBase d)This will set the destination to jump to. -
Uses of COSBase in org.apache.pdfbox.pdmodel.interactive.annotation
Methods in org.apache.pdfbox.pdmodel.interactive.annotation that return COSBase Modifier and Type Method Description COSBasePDAnnotation. getCOSObject()Interface method for COSObjectable.COSBasePDAppearanceCharacteristicsDictionary. getCOSObject()Convert this standard java object to a COS object.COSBasePDAppearanceDictionary. getCOSObject()returns the dictionary.COSBasePDAppearanceStream. getCOSObject()Convert this standard java object to a COS object.COSBasePDBorderEffectDictionary. getCOSObject()returns the dictionary.COSBasePDBorderStyleDictionary. getCOSObject()returns the dictionary.COSBasePDExternalDataDictionary. getCOSObject()Convert this standard java object to a COS object.Methods in org.apache.pdfbox.pdmodel.interactive.annotation with parameters of type COSBase Modifier and Type Method Description static PDAnnotationPDAnnotation. createAnnotation(COSBase base)Create the correct annotation from the base COS object. -
Uses of COSBase in org.apache.pdfbox.pdmodel.interactive.digitalsignature
Methods in org.apache.pdfbox.pdmodel.interactive.digitalsignature that return COSBase Modifier and Type Method Description COSBasePDPropBuild. getCOSObject()Convert this standard java object to a COS object.COSBasePDPropBuildDataDict. getCOSObject()Convert this standard java object to a COS object.COSBasePDSeedValue. getCOSObject()Convert this standard java object to a COS object.COSBasePDSeedValueMDP. getCOSObject()Convert this standard java object to a COS object.COSBasePDSeedValueTimeStamp. getCOSObject()Convert this standard java object to a COS object.COSBasePDSignature. getCOSObject()Convert this standard java object to a COS object. -
Uses of COSBase in org.apache.pdfbox.pdmodel.interactive.documentnavigation.destination
Methods in org.apache.pdfbox.pdmodel.interactive.documentnavigation.destination that return COSBase Modifier and Type Method Description COSBasePDNamedDestination. getCOSObject()Convert this standard java object to a COS object.COSBasePDPageDestination. getCOSObject()Convert this standard java object to a COS object.Methods in org.apache.pdfbox.pdmodel.interactive.documentnavigation.destination with parameters of type COSBase Modifier and Type Method Description static PDDestinationPDDestination. create(COSBase base)This will create a new destination depending on the type of COSBase that is passed in. -
Uses of COSBase in org.apache.pdfbox.pdmodel.interactive.documentnavigation.outline
Methods in org.apache.pdfbox.pdmodel.interactive.documentnavigation.outline that return COSBase Modifier and Type Method Description COSBasePDOutlineNode. getCOSObject()Convert this standard java object to a COS object. -
Uses of COSBase in org.apache.pdfbox.pdmodel.interactive.form
Methods in org.apache.pdfbox.pdmodel.interactive.form that return COSBase Modifier and Type Method Description COSBasePDAcroForm. getCOSObject()Convert this standard java object to a COS object.COSBasePDField. getCOSObject()Convert this standard java object to a COS object.COSBasePDXFA. getCOSObject()Convert this standard java object to a COS object.Constructors in org.apache.pdfbox.pdmodel.interactive.form with parameters of type COSBase Constructor Description PDXFA(COSBase xfaBase)Constructor. -
Uses of COSBase in org.apache.pdfbox.pdmodel.interactive.measurement
Methods in org.apache.pdfbox.pdmodel.interactive.measurement that return COSBase Modifier and Type Method Description COSBasePDMeasureDictionary. getCOSObject()Convert this standard java object to a COS object.COSBasePDNumberFormatDictionary. getCOSObject()Convert this standard java object to a COS object.COSBasePDViewportDictionary. getCOSObject()Convert this standard java object to a COS object. -
Uses of COSBase in org.apache.pdfbox.pdmodel.interactive.pagenavigation
Methods in org.apache.pdfbox.pdmodel.interactive.pagenavigation that return COSBase Modifier and Type Method Description COSBasePDThread. getCOSObject()Convert this standard java object to a COS object.COSBasePDThreadBead. getCOSObject()Convert this standard java object to a COS object. -
Uses of COSBase in org.apache.pdfbox.pdmodel.interactive.viewerpreferences
Methods in org.apache.pdfbox.pdmodel.interactive.viewerpreferences that return COSBase Modifier and Type Method Description COSBasePDViewerPreferences. getCOSObject()Convert this standard java object to a COS object. -
Uses of COSBase in org.apache.pdfbox.pdmodel.markedcontent
Methods in org.apache.pdfbox.pdmodel.markedcontent that return COSBase Modifier and Type Method Description COSBasePDPropertyList. getCOSObject()Convert this standard java object to a COS object. -
Uses of COSBase in org.apache.pdfbox.util
Methods in org.apache.pdfbox.util that return COSBase Modifier and Type Method Description COSBasePDFCloneUtility. cloneForNewDocument(java.lang.Object base)Deep-clones the given object for inclusion into a different PDF document identified by the destination parameter.Method parameters in org.apache.pdfbox.util with type arguments of type COSBase Modifier and Type Method Description voidPDFStreamEngine. processOperator(java.lang.String operation, java.util.List<COSBase> arguments)This is used to handle an operation.protected voidPDFStreamEngine. processOperator(PDFOperator operator, java.util.List<COSBase> arguments)This is used to handle an operation. -
Uses of COSBase in org.apache.pdfbox.util.operator
Method parameters in org.apache.pdfbox.util.operator with type arguments of type COSBase Modifier and Type Method Description voidBeginMarkedContentSequence. process(PDFOperator operator, java.util.List<COSBase> arguments)process the operator.voidBeginMarkedContentSequenceWithProperties. process(PDFOperator operator, java.util.List<COSBase> arguments)process the operator.voidBeginText. process(PDFOperator operator, java.util.List<COSBase> arguments)process : BT : Begin text object.voidCloseAndStrokePath. process(PDFOperator operator, java.util.List<COSBase> arguments)s close and stroke the path.voidConcatenate. process(PDFOperator operator, java.util.List<COSBase> arguments)process : cm : Concatenate matrix to current transformation matrix.voidEndMarkedContentSequence. process(PDFOperator operator, java.util.List<COSBase> arguments)process the operator.voidEndText. process(PDFOperator operator, java.util.List<COSBase> arguments)process : ET : End text object.voidGRestore. process(PDFOperator operator, java.util.List<COSBase> arguments)process the operator.voidGSave. process(PDFOperator operator, java.util.List<COSBase> arguments)process : q : Save graphics state.voidInvoke. process(PDFOperator operator, java.util.List<COSBase> arguments)process : Do - Invoke a named xobject.voidMoveAndShow. process(PDFOperator operator, java.util.List<COSBase> arguments)' Move to next line and show text.voidMoveText. process(PDFOperator operator, java.util.List<COSBase> arguments)process : Td : Move text position.voidMoveTextSetLeading. process(PDFOperator operator, java.util.List<COSBase> arguments)process : TD Move text position and set leading.voidNextLine. process(PDFOperator operator, java.util.List<COSBase> arguments)process : T* Move to start of next text line.abstract voidOperatorProcessor. process(PDFOperator operator, java.util.List<COSBase> arguments)process the operator.voidSetCharSpacing. process(PDFOperator operator, java.util.List<COSBase> arguments)process : Tc Set character spacing.voidSetGraphicsStateParameters. process(PDFOperator operator, java.util.List<COSBase> arguments)gs Set parameters from graphics state parameter dictionary.voidSetHorizontalTextScaling. process(PDFOperator operator, java.util.List<COSBase> arguments)Tz Set horizontal text scaling.voidSetLineCapStyle. process(PDFOperator operator, java.util.List<COSBase> arguments)Set the line cap style.voidSetLineDashPattern. process(PDFOperator operator, java.util.List<COSBase> arguments)Set the line dash pattern.voidSetLineJoinStyle. process(PDFOperator operator, java.util.List<COSBase> arguments)Set the line cap style.voidSetLineMiterLimit. process(PDFOperator operator, java.util.List<COSBase> arguments)w Set miter limit.voidSetLineWidth. process(PDFOperator operator, java.util.List<COSBase> arguments)w Set line width.voidSetMatrix. process(PDFOperator operator, java.util.List<COSBase> arguments)Tm Set text matrix and text line matrix.voidSetMoveAndShow. process(PDFOperator operator, java.util.List<COSBase> arguments)" Set word and character spacing, move to next line, and show text.voidSetNonStrokingCalRGBColor. process(PDFOperator operator, java.util.List<COSBase> arguments)rg Set color space for non stroking operations.voidSetNonStrokingCMYKColor. process(PDFOperator operator, java.util.List<COSBase> arguments)k Set color space for non stroking operations.voidSetNonStrokingColor. process(PDFOperator operator, java.util.List<COSBase> arguments)sc,scn Set color space for non stroking operations.voidSetNonStrokingColorSpace. process(PDFOperator operator, java.util.List<COSBase> arguments)cs Set color space for non stroking operations.voidSetNonStrokingDeviceN. process(PDFOperator operator, java.util.List<COSBase> arguments)scn Set color space for non stroking operations.voidSetNonStrokingGrayColor. process(PDFOperator operator, java.util.List<COSBase> arguments)rg Set color space for non stroking operations.voidSetNonStrokingICCBasedColor. process(PDFOperator operator, java.util.List<COSBase> arguments)scn Set color space for non stroking operations.voidSetNonStrokingIndexed. process(PDFOperator operator, java.util.List<COSBase> arguments)scn Set color space for non stroking operations.voidSetNonStrokingLabColor. process(PDFOperator operator, java.util.List<COSBase> arguments)process the operator.voidSetNonStrokingPattern. process(PDFOperator operator, java.util.List<COSBase> arguments)Set color space for non stroking operations.voidSetNonStrokingRGBColor. process(PDFOperator operator, java.util.List<COSBase> arguments)rg Set color space for non stroking operations.voidSetNonStrokingSeparation. process(PDFOperator operator, java.util.List<COSBase> arguments)scn Set color space for non stroking operations.voidSetStrokingCalRGBColor. process(PDFOperator operator, java.util.List<COSBase> arguments)RG Set color space for stroking operations.voidSetStrokingCMYKColor. process(PDFOperator operator, java.util.List<COSBase> arguments)K Set color space for stroking operations.voidSetStrokingColor. process(PDFOperator operator, java.util.List<COSBase> arguments)SC,SCN Set color space for stroking operations.voidSetStrokingColorSpace. process(PDFOperator operator, java.util.List<COSBase> arguments)CS Set color space for stroking operations.voidSetStrokingDeviceN. process(PDFOperator operator, java.util.List<COSBase> arguments)scn Set color space for non stroking operations.voidSetStrokingGrayColor. process(PDFOperator operator, java.util.List<COSBase> arguments)RG Set color space for stroking operations.voidSetStrokingICCBasedColor. process(PDFOperator operator, java.util.List<COSBase> arguments)scn Set color space for stroking operations.voidSetStrokingIndexed. process(PDFOperator operator, java.util.List<COSBase> arguments)scn Set color space for non stroking operations.voidSetStrokingLabColor. process(PDFOperator operator, java.util.List<COSBase> arguments)process the operator.voidSetStrokingPattern. process(PDFOperator operator, java.util.List<COSBase> arguments)Set pattern instead of a color space for stroking operations.voidSetStrokingRGBColor. process(PDFOperator operator, java.util.List<COSBase> arguments)RG Set color space for stroking operations.voidSetStrokingSeparation. process(PDFOperator operator, java.util.List<COSBase> arguments)scn Set color space for non stroking operations.voidSetTextFont. process(PDFOperator operator, java.util.List<COSBase> arguments)Tf selectfont Set text font and size.voidSetTextLeading. process(PDFOperator operator, java.util.List<COSBase> arguments)TL Set text leading.voidSetTextRenderingMode. process(PDFOperator operator, java.util.List<COSBase> arguments)Tr Set text rendering mode.voidSetTextRise. process(PDFOperator operator, java.util.List<COSBase> arguments)Ts Set text rise.voidSetWordSpacing. process(PDFOperator operator, java.util.List<COSBase> arguments)Tw Set word spacing.voidShowText. process(PDFOperator operator, java.util.List<COSBase> arguments)Tj show Show text.voidShowTextGlyph. process(PDFOperator operator, java.util.List<COSBase> arguments)TJ Show text, allowing individual glyph positioning. -
Uses of COSBase in org.apache.pdfbox.util.operator.pagedrawer
Method parameters in org.apache.pdfbox.util.operator.pagedrawer with type arguments of type COSBase Modifier and Type Method Description voidAppendRectangleToPath. process(PDFOperator operator, java.util.List<COSBase> arguments)process : re : append rectangle to path.voidBeginInlineImage. process(PDFOperator operator, java.util.List<COSBase> arguments)process : BI : begin inline image.voidClipEvenOddRule. process(PDFOperator operator, java.util.List<COSBase> arguments)process : W* : set clipping path using even odd rule.voidClipNonZeroRule. process(PDFOperator operator, java.util.List<COSBase> arguments)process : W : Set the clipping path using non zero winding rule.voidCloseFillEvenOddAndStrokePath. process(PDFOperator operator, java.util.List<COSBase> arguments)fill and stroke the path.voidCloseFillNonZeroAndStrokePath. process(PDFOperator operator, java.util.List<COSBase> arguments)fill and stroke the path.voidClosePath. process(PDFOperator operator, java.util.List<COSBase> arguments)process : h : Close path.voidCurveTo. process(PDFOperator operator, java.util.List<COSBase> arguments)process : c : Append curved segment to path.voidCurveToReplicateFinalPoint. process(PDFOperator operator, java.util.List<COSBase> arguments)process : y : Append curved segment to path (final point replicated).voidCurveToReplicateInitialPoint. process(PDFOperator operator, java.util.List<COSBase> arguments)process : v : Append curved segment to path (initial point replicated).voidEndPath. process(PDFOperator operator, java.util.List<COSBase> arguments)process : n : End path.voidFillEvenOddAndStrokePath. process(PDFOperator operator, java.util.List<COSBase> arguments)fill and stroke the path.voidFillEvenOddRule. process(PDFOperator operator, java.util.List<COSBase> arguments)process : f* : fill path using even odd rule.voidFillNonZeroAndStrokePath. process(PDFOperator operator, java.util.List<COSBase> arguments)fill and stroke the path.voidFillNonZeroRule. process(PDFOperator operator, java.util.List<COSBase> arguments)process : F/f : fill path using non zero winding rule.voidInvoke. process(PDFOperator operator, java.util.List<COSBase> arguments)process : Do : Paint the specified XObject (section 4.7).voidLineTo. process(PDFOperator operator, java.util.List<COSBase> arguments)process : l : Append straight line segment to path.voidMoveTo. process(PDFOperator operator, java.util.List<COSBase> arguments)process : m : Begin new subpath.voidSetLineCapStyle. process(PDFOperator operator, java.util.List<COSBase> arguments)Set the line cap style.voidSetLineDashPattern. process(PDFOperator operator, java.util.List<COSBase> arguments)Set the line dash pattern.voidSetLineJoinStyle. process(PDFOperator operator, java.util.List<COSBase> arguments)Set the line cap style.voidSetLineMiterLimit. process(PDFOperator operator, java.util.List<COSBase> arguments)Set the line dash pattern.voidSetLineWidth. process(PDFOperator operator, java.util.List<COSBase> arguments)w Set line width.voidSHFill. process(PDFOperator operator, java.util.List<COSBase> arguments)process : sh : shade fill the clipping area.voidStrokePath. process(PDFOperator operator, java.util.List<COSBase> arguments)S stroke the path.
-