Uses of Class
org.apache.pdfbox.cos.COSBase
Packages that use COSBase
Package
Description
These are the low level objects that make up a PDF document.
This package contains the implementations for all of the encodings that are used in PDF documents.
This package contains IO streams.
The pdfparser package contains classes to parse PDF documents and objects within the document.
This is the persistence layer used to write the PDFBox documents to a stream.
The PDModel package represents a high level API for creating and manipulating PDF documents.
High level PD classes that are used throughout several packages are placed in the PDModel common package.
The file specification package defines classes that are used for the PDF File Specification logic.
This package contains functions that are available in the PDF specification.
The logical structure package provides a mechanism for incorporating
structural information about a document's content into a PDF file.
This package contains classes for prepress support in PDFBox.
The tagged PDF package provides a mechanism for incorporating "tags" (standard
structure types and attributes) into a PDF file.
The fdf package will handle all of the logic used for FDF objects inside of the PDF/FDF document.
Classes to deal with font functionality in a PDF Document.
The PDModel graphics package deals with graphics states, operations, and parameters within the PDF document.
This package deals with colors that are stored in a PDF document.
This package deals with patterns which are used instead of colors.
This package deals with shadings which are used for filling instead of a color.
This package deals with images that are stored in a PDF document.
This package represents actions that can be performed in a PDF document.
This package contains all of the available PDF action types.
The annotation package contains classes that work with PDF annotation elements.
The digitial signature library will manage signatures that are stored in the PDF document.
The destination package allows destinations into a pdf document to be specified.
The outline package allows for a PDF outline(bookmarks) to be created.
The interactive package contains classes that deal with interactive annotations such as textfields and buttons.
The measurement package contains classes that work with elements specifying measure properties.
A package to allow provide access to PDF page navigation functionality.
A package to allow access to document viewing preferences.
This package contains utility classes that are used by the PDFBox project.
This package contains implementations of all of the PDF operators.
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.cosModifier and TypeClassDescriptionclass
An array of PDFBase objects as part of the PDF document.class
This class represents a boolean value in the PDF document.class
This class represents a dictionary where name/value pairs reside.class
class
This is the in-memory representation of the PDF document.class
This class represents a floating point number in a PDF document.class
This class represents an integer number in a PDF document.final class
This class represents a PDF named object.class
This class represents a null PDF object.class
This class represents an abstract number in a PDF document.class
This class represents a PDF object.class
This class represents a stream object in a PDF document.class
This represents a string object in a PDF document.class
Fields in org.apache.pdfbox.cos with type parameters of type COSBaseMethods in org.apache.pdfbox.cos that return COSBaseModifier and TypeMethodDescriptionCOSArray.get
(int index) This will get an object from the array.COSBase.getCOSObject()
Convert this standard java object to a COS object.COSDictionary.getDictionaryObject
(String key) This will get an object from this dictionary.COSDictionary.getDictionaryObject
(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.COSDictionary.getDictionaryObject
(String firstKey, String secondKey) Deprecated.COSDictionary.getDictionaryObject
(COSName key) This will get an object from this dictionary.COSDictionary.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.COSDictionaryLateBinding.getDictionaryObject
(COSName key) This will get an object from this dictionary.COSObject.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.COSStream.getFilters()
This will return the filters to apply to the byte stream.This will do a lookup into the dictionary.This will do a lookup into the dictionary.This will get the dictionary object in this object that has the name key.COSArray.getObject
(int index) This will get an object from the array.COSObject.getObject()
This will get the object that this object encapsulates.COSDictionary.getObjectFromPath
(String objPath) Nice method, gives you every object you want Arrays works properly too.COSArray.remove
(int i) This will remove an element from the array.Methods in org.apache.pdfbox.cos that return types with arguments of type COSBaseModifier and TypeMethodDescriptionCOSDictionary.entrySet()
Returns the name-value entries in this dictionary.COSDictionary.getValues()
This will get all of the values for the dictionary.COSArray.iterator()
Get access to the list.Methods in org.apache.pdfbox.cos with parameters of type COSBaseModifier and TypeMethodDescriptionvoid
Add the specified object at the ith location and push the rest to the right.void
This will add an object to the array.COSStream.createFilteredStream
(COSBase expectedLength) This will create a new stream for which filtered byte should be written to.void
COSArray.growToSize
(int size, COSBase object) This will add the object until the size of the array is at least as large as the parameter.int
This will return the index of the entry or -1 if it is not found.int
COSArray.indexOfObject
(COSBase object) This will return the index of the entry or -1 if it is not found.boolean
This will remove an element from the array.boolean
COSArray.removeObject
(COSBase o) This will remove an element from the array.void
This will set an object at a specific index.void
COSStream.setFilters
(COSBase filters) set the filters to be applied to the stream.void
This will set an item in the dictionary.void
This will set an item in the dictionary.void
This will set the object that this object encapsulates.Method parameters in org.apache.pdfbox.cos with type arguments of type COSBaseModifier and TypeMethodDescriptionvoid
COSArray.addAll
(int i, Collection<COSBase> objectList) Add the specified object at the ith location and push the rest to the right.void
COSArray.addAll
(Collection<COSBase> objectsList) This will add an object to the array.void
COSArray.removeAll
(Collection<COSBase> objectsList) This will remove all of the objects in the collection.void
COSArray.retainAll
(Collection<COSBase> objectsList) This will retain all of the objects in the collection.Constructors in org.apache.pdfbox.cos with parameters of type COSBase -
Uses of COSBase in org.apache.pdfbox.encoding
Methods in org.apache.pdfbox.encoding that return COSBaseModifier and TypeMethodDescriptionAFMEncoding.getCOSObject()
Convert this standard java object to a COS object.DictionaryEncoding.getCOSObject()
Convert this standard java object to a COS object.MacOSRomanEncoding.getCOSObject()
Convert this standard java object to a COS object.MacRomanEncoding.getCOSObject()
Convert this standard java object to a COS object.PdfDocEncoding.getCOSObject()
Convert this standard java object to a COS object.StandardEncoding.getCOSObject()
Convert this standard java object to a COS object.Type1Encoding.getCOSObject()
Convert this standard java object to a COS object.WinAnsiEncoding.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 COSBaseModifier and TypeMethodDescriptionRandomAccessFileOutputStream.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 COSBaseModifier and TypeMethodDescriptionvoid
RandomAccessFileOutputStream.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 COSBaseModifier and TypeMethodDescriptionConformingPDFParser.getObject
(long objectNumber, long generation) protected COSBase
BaseParser.parseDirObject()
This will parse a directory object from the stream.protected COSBase
NonSequentialPDFParser.parseObjectDynamically
(int objNr, int objGenNr, boolean requireExistingNotCompressedObj) This will parse the next object from the stream and add it to the local state.protected final COSBase
NonSequentialPDFParser.parseObjectDynamically
(COSObject obj, boolean requireExistingNotCompressedObj) This will parse the next object from the stream and add it to the local state.protected COSBase
ConformingPDFParser.processCosObject
(String string) protected COSBase
ConformingPDFParser.readObject()
This actually reads the object data.ConformingPDFParser.readObject
(long objectNumber, long generation) This will read an object from the inputFile at whatever our currentOffset is.protected COSBase
ConformingPDFParser.readObjectBackwards()
Methods in org.apache.pdfbox.pdfparser with parameters of type COSBase -
Uses of COSBase in org.apache.pdfbox.pdfwriter
Methods in org.apache.pdfbox.pdfwriter that return COSBaseMethods in org.apache.pdfbox.pdfwriter that return types with arguments of type COSBaseModifier and TypeMethodDescriptionCOSWriter.getObjectKeys()
This will get all available object keys.Methods in org.apache.pdfbox.pdfwriter with parameters of type COSBaseModifier and TypeMethodDescriptionvoid
COSWriter.doWriteObject
(COSBase obj) This will write a COS object.void
COSWriter.writeReference
(COSBase obj) visitFromObjRef method comment.Constructors in org.apache.pdfbox.pdfwriter with parameters of type COSBaseModifierConstructorDescriptionCOSWriterXRefEntry
(long start, COSBase obj, COSObjectKey keyValue) Constructor. -
Uses of COSBase in org.apache.pdfbox.pdmodel
Methods in org.apache.pdfbox.pdmodel that return COSBaseModifier and TypeMethodDescriptionPDDocumentCatalog.getCOSObject()
Convert this standard java object to a COS object.PDDocumentInformation.getCOSObject()
Convert this standard java object to a COS object.PDDocumentNameDictionary.getCOSObject()
Convert this standard java object to a COS object.PDPage.getCOSObject()
Convert this standard java object to a COS object.PDPageNode.getCOSObject()
Convert this standard java object to a COS object.PDResources.getCOSObject()
Convert this standard java object to a COS object.ConformingPDDocument.getObjectFromPool
(long number, long generation) This will get an object from the pool.ConformingPDDocument.getObjectFromPool
(COSObjectKey key) This will get an object from the pool.Methods in org.apache.pdfbox.pdmodel with parameters of type COSBaseModifier and TypeMethodDescriptionprotected COSObjectable
PDDestinationNameTreeNode.convertCOSToPD
(COSBase base) Method to convert the COS value in the name tree to the PD Model object.protected COSObjectable
PDEmbeddedFilesNameTreeNode.convertCOSToPD
(COSBase base) Method to convert the COS value in the name tree to the PD Model object.protected COSObjectable
PDJavascriptNameTreeNode.convertCOSToPD
(COSBase base) Method to convert the COS value in the name tree to the PD Model object.void
ConformingPDDocument.putObjectInPool
(COSBase object, long number, long generation) -
Uses of COSBase in org.apache.pdfbox.pdmodel.common
Subclasses of COSBase in org.apache.pdfbox.pdmodel.commonModifier and TypeClassDescriptionclass
This will take an array of streams and sequence them together.Methods in org.apache.pdfbox.pdmodel.common that return COSBaseModifier and TypeMethodDescriptionCOSStreamArray.get
(int index) This will get a stream (or the reference to a stream) from the array.COSObjectable.getCOSObject()
Convert this standard java object to a COS object.PDDictionaryWrapper.getCOSObject()
Convert this standard java object to a COS object.PDMatrix.getCOSObject()
Convert this standard java object to a COS object.PDMemoryStream.getCOSObject()
Convert this standard java object to a COS object.PDNameTreeNode.getCOSObject()
Convert this standard java object to a COS object.PDNumberTreeNode.getCOSObject()
Convert this standard java object to a COS object.PDPageLabelRange.getCOSObject()
PDPageLabels.getCOSObject()
Convert this standard java object to a COS object.PDRange.getCOSObject()
Convert this standard java object to a COS object.PDRectangle.getCOSObject()
Convert this standard java object to a COS object.PDStream.getCOSObject()
Convert this standard java object to a COS object.PDTextStream.getCOSObject()
Convert this standard java object to a COS object.COSStreamArray.getDictionaryObject
(COSName key) This will get an object from this streams dictionary and dereference it if necessary.COSStreamArray.getFilters()
This will return the filters to apply to the byte stream the method will return.DualCOSObjectable.getFirstCOSObject()
Convert this standard java object to a COS object.PDNamedTextStream.getFirstCOSObject()
Convert this standard java object to a COS object.This will get an object from this streams dictionary.DualCOSObjectable.getSecondCOSObject()
Convert this standard java object to a COS object.PDNamedTextStream.getSecondCOSObject()
Convert this standard java object to a COS object.Methods in org.apache.pdfbox.pdmodel.common with parameters of type COSBaseModifier and TypeMethodDescriptionprotected COSObjectable
PDNameTreeNode.convertCOSToPD
(COSBase base) Method to convert the COS value in the name tree to the PD Model object.protected COSObjectable
PDNumberTreeNode.convertCOSToPD
(COSBase base) Method to convert the COS value in the name tree to the PD Model object.COSStreamArray.createFilteredStream
(COSBase expectedLength) This will create a new stream for which filtered byte should be written to.static PDStream
PDStream.createFromCOS
(COSBase base) Create a pd stream from either a regular COSStream on a COSArray of cos streams.static PDTextStream
PDTextStream.createTextStream
(COSBase base) This will create the text stream object.void
COSStreamArray.setFilters
(COSBase filters) set the filters to be applied to the stream.Constructors in org.apache.pdfbox.pdmodel.common with parameters of type COSBaseModifierConstructorDescriptionCOSArrayList
(E actualObject, COSBase item, COSDictionary dictionary, 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 COSBaseModifier and TypeMethodDescriptionPDComplexFileSpecification.getCOSObject()
Convert this standard java object to a COS object.PDSimpleFileSpecification.getCOSObject()
Convert this standard java object to a COS object.Methods in org.apache.pdfbox.pdmodel.common.filespecification with parameters of type COSBaseModifier and TypeMethodDescriptionstatic PDFileSpecification
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 COSBaseMethods in org.apache.pdfbox.pdmodel.common.function with parameters of type COSBaseModifier and TypeMethodDescriptionstatic PDFunction
Create the correct PD Model function based on the COS base function.Constructors in org.apache.pdfbox.pdmodel.common.function with parameters of type COSBaseModifierConstructorDescriptionPDFunction
(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 COSBaseModifier and TypeMethodDescriptionPDDefaultAttributeObject.getAttributeValue
(String attrName) Gets the attribute value for a given name.protected COSBase
PDDefaultAttributeObject.getAttributeValue
(String attrName, COSBase defaultValue) Gets the attribute value for a given name.PDMarkedContentReference.getCOSObject()
Convert this standard java object to a COS object.PDMarkInfo.getCOSObject()
Convert this standard java object to a COS object.PDObjectReference.getCOSObject()
Convert this standard java object to a COS object.PDStructureNode.getCOSObject()
Convert this standard java object to a COS object.PDStructureTreeRoot.getK()
Returns the K entry.PDUserProperty.getValue()
Returns the property value.Methods in org.apache.pdfbox.pdmodel.documentinterchange.logicalstructure with parameters of type COSBaseModifier and TypeMethodDescriptionprotected void
Appends a COS base kid.protected Object
PDStructureNode.createObject
(COSBase kid) Creates an object for a kid of this structure node.protected COSBase
PDDefaultAttributeObject.getAttributeValue
(String attrName, COSBase defaultValue) Gets the attribute value for a given name.protected void
PDStructureNode.insertBefore
(COSBase newKid, Object refKid) Inserts an COS base kid before a reference kid.protected void
PDAttributeObject.potentiallyNotifyChanged
(COSBase oldBase, COSBase newBase) Notifies the attribute object change listeners if the attribute is changed.protected boolean
Removes a COS base kid.void
PDDefaultAttributeObject.setAttribute
(String attrName, COSBase attrValue) Sets an attribute.void
Sets the K entry.void
Sets the property value. -
Uses of COSBase in org.apache.pdfbox.pdmodel.documentinterchange.prepress
Methods in org.apache.pdfbox.pdmodel.documentinterchange.prepress that return COSBaseModifier and TypeMethodDescriptionPDBoxStyle.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 COSBaseModifier and TypeMethodDescriptionPDFourColours.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 COSBaseModifier and TypeMethodDescriptionFDFAnnotation.getCOSObject()
Convert this standard java object to a COS object.FDFCatalog.getCOSObject()
Convert this standard java object to a COS object.FDFDictionary.getCOSObject()
Convert this standard java object to a COS object.FDFField.getCOSObject()
Convert this standard java object to a COS object.FDFIconFit.getCOSObject()
Convert this standard java object to a COS object.FDFJavaScript.getCOSObject()
Convert this standard java object to a COS object.FDFNamedPageReference.getCOSObject()
Convert this standard java object to a COS object.FDFOptionElement.getCOSObject()
Convert this standard java object to a COS object.FDFPage.getCOSObject()
Convert this standard java object to a COS object.FDFPageInfo.getCOSObject()
Convert this standard java object to a COS object.FDFTemplate.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 COSBaseModifier and TypeMethodDescriptionPDFont.getCOSObject()
Convert this standard java object to a COS object.PDFontDescriptorDictionary.getCOSObject()
Convert this standard java object to a COS object.protected COSBase
PDFont.getEncoding()
cache theCOSName.ENCODING
object from the font's dictionary since it is called so often.PDSimpleFont.getToUnicode()
This will get the ToUnicode object.Methods in org.apache.pdfbox.pdmodel.font with parameters of type COSBaseModifier and TypeMethodDescriptionprotected void
PDFont.setEncoding
(COSBase encodingValue) Set the encoding object from the fonts dictionary.void
PDSimpleFont.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 COSBaseModifier and TypeMethodDescriptionPDExtendedGraphicsState.getCOSObject()
Convert this standard java object to a COS object.PDFontSetting.getCOSObject()
Convert this standard java object to a COS object.PDLineDashPattern.getCOSObject()
Convert this standard java object to a COS object.PDShading.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 COSBaseModifier and TypeMethodDescriptionPDCalGray.getCOSObject()
Convert this standard java object to a COS object.PDCalRGB.getCOSObject()
Convert this standard java object to a COS object.PDColorSpace.getCOSObject()
Convert this standard java object to a COS object.PDDeviceN.getCOSObject()
PDGamma.getCOSObject()
Convert this standard java object to a COS object.PDICCBased.getCOSObject()
Convert this standard java object to a COS object.PDIndexed.getCOSObject()
PDLab.getCOSObject()
Convert this standard java object to a COS object.PDOutputIntent.getCOSObject()
PDSeparation.getCOSObject()
PDTristimulus.getCOSObject()
Convert this standard java object to a COS object.Methods in org.apache.pdfbox.pdmodel.graphics.color with parameters of type COSBaseModifier and TypeMethodDescriptionPDSeparation.calculateColorValues
(COSBase tintValue) Returns the components of the color in the alternate colorspace for the given tint value.static PDColorSpace
PDColorSpaceFactory.createColorSpace
(COSBase colorSpace) This will create the correct color space given the name.static PDColorSpace
PDColorSpaceFactory.createColorSpace
(COSBase colorSpace, Map<String, PDColorSpace> colorSpaces) This will create the correct color space given the name.static PDColorSpace
PDColorSpaceFactory.createColorSpace
(COSBase colorSpace, Map<String, PDColorSpace> colorSpaces, Map<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 COSBaseModifier and TypeMethodDescriptionPDDeviceN.calculateColorValues
(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 COSBaseModifier and TypeMethodDescriptionPDOptionalContentGroup.getCOSObject()
Convert this standard java object to a COS object.PDOptionalContentProperties.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 COSBaseModifier and TypeMethodDescriptionPDPatternResources.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 COSBaseModifier and TypeMethodDescriptionPDShadingResources.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 COSBaseModifier and TypeMethodDescriptionPDXObject.getCOSObject()
Returns the stream.PDXObjectImage.getMask()
Returns the optional mask of a XObjectImage if there is one.Methods in org.apache.pdfbox.pdmodel.graphics.xobject with parameters of type COSBaseModifier and TypeMethodDescriptionprotected static PDXObject
PDXObject.commonXObjectCreation
(COSBase xobject, boolean isThumb) Create the correct xobject from the cos base.static PDXObject
PDXObjectImage.createThumbnailXObject
(COSBase xobject) Create the correct thumbnail from the cos base.static PDXObject
PDXObject.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 COSBaseModifier and TypeMethodDescriptionPDAdditionalActions.getCOSObject()
Convert this standard java object to a COS object.PDAnnotationAdditionalActions.getCOSObject()
Convert this standard java object to a COS object.PDDocumentCatalogAdditionalActions.getCOSObject()
Convert this standard java object to a COS object.PDFormFieldAdditionalActions.getCOSObject()
Convert this standard java object to a COS object.PDPageAdditionalActions.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 COSBaseModifier and TypeMethodDescriptionPDAction.getCOSObject()
Convert this standard java object to a COS object.PDActionNamed.getCOSObject()
Convert this standard java object to a COS object.PDActionRemoteGoTo.getCOSObject()
Convert this standard java object to a COS object.PDActionURI.getCOSObject()
Convert this standard java object to a COS object.PDURIDictionary.getCOSObject()
Convert this standard java object to a COS object.PDWindowsLaunchParams.getCOSObject()
Convert this standard java object to a COS object.PDActionRemoteGoTo.getD()
This will get the destination to jump to.Methods in org.apache.pdfbox.pdmodel.interactive.action.type with parameters of type COSBase -
Uses of COSBase in org.apache.pdfbox.pdmodel.interactive.annotation
Methods in org.apache.pdfbox.pdmodel.interactive.annotation that return COSBaseModifier and TypeMethodDescriptionPDAnnotation.getCOSObject()
Interface method for COSObjectable.PDAppearanceCharacteristicsDictionary.getCOSObject()
Convert this standard java object to a COS object.PDAppearanceDictionary.getCOSObject()
returns the dictionary.PDAppearanceStream.getCOSObject()
Convert this standard java object to a COS object.PDBorderEffectDictionary.getCOSObject()
returns the dictionary.PDBorderStyleDictionary.getCOSObject()
returns the dictionary.PDExternalDataDictionary.getCOSObject()
Convert this standard java object to a COS object.Methods in org.apache.pdfbox.pdmodel.interactive.annotation with parameters of type COSBaseModifier and TypeMethodDescriptionstatic PDAnnotation
PDAnnotation.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 COSBaseModifier and TypeMethodDescriptionPDPropBuild.getCOSObject()
Convert this standard java object to a COS object.PDPropBuildDataDict.getCOSObject()
Convert this standard java object to a COS object.PDSeedValue.getCOSObject()
Convert this standard java object to a COS object.PDSeedValueMDP.getCOSObject()
Convert this standard java object to a COS object.PDSeedValueTimeStamp.getCOSObject()
Convert this standard java object to a COS object.PDSignature.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 COSBaseModifier and TypeMethodDescriptionPDAcroForm.getCOSObject()
Convert this standard java object to a COS object.PDField.getCOSObject()
Convert this standard java object to a COS object.PDXFA.getCOSObject()
Convert this standard java object to a COS object.Constructors in org.apache.pdfbox.pdmodel.interactive.form with parameters of type COSBase -
Uses of COSBase in org.apache.pdfbox.pdmodel.interactive.measurement
Methods in org.apache.pdfbox.pdmodel.interactive.measurement that return COSBaseModifier and TypeMethodDescriptionPDMeasureDictionary.getCOSObject()
Convert this standard java object to a COS object.PDNumberFormatDictionary.getCOSObject()
Convert this standard java object to a COS object.PDViewportDictionary.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 COSBaseModifier and TypeMethodDescriptionPDViewerPreferences.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 COSBaseModifier and TypeMethodDescriptionPDPropertyList.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 COSBaseModifier and TypeMethodDescriptionPDFCloneUtility.cloneForNewDocument
(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 COSBaseModifier and TypeMethodDescriptionvoid
PDFStreamEngine.processOperator
(String operation, List<COSBase> arguments) This is used to handle an operation.protected void
PDFStreamEngine.processOperator
(PDFOperator operator, 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 COSBaseModifier and TypeMethodDescriptionvoid
BeginMarkedContentSequence.process
(PDFOperator operator, List<COSBase> arguments) process the operator.void
BeginMarkedContentSequenceWithProperties.process
(PDFOperator operator, List<COSBase> arguments) process the operator.void
BeginText.process
(PDFOperator operator, List<COSBase> arguments) process : BT : Begin text object.void
CloseAndStrokePath.process
(PDFOperator operator, List<COSBase> arguments) s close and stroke the path.void
Concatenate.process
(PDFOperator operator, List<COSBase> arguments) process : cm : Concatenate matrix to current transformation matrix.void
EndMarkedContentSequence.process
(PDFOperator operator, List<COSBase> arguments) process the operator.void
EndText.process
(PDFOperator operator, List<COSBase> arguments) process : ET : End text object.void
GRestore.process
(PDFOperator operator, List<COSBase> arguments) process the operator.void
GSave.process
(PDFOperator operator, List<COSBase> arguments) process : q : Save graphics state.void
Invoke.process
(PDFOperator operator, List<COSBase> arguments) process : Do - Invoke a named xobject.void
MoveAndShow.process
(PDFOperator operator, List<COSBase> arguments) ' Move to next line and show text.void
MoveText.process
(PDFOperator operator, List<COSBase> arguments) process : Td : Move text position.void
MoveTextSetLeading.process
(PDFOperator operator, List<COSBase> arguments) process : TD Move text position and set leading.void
NextLine.process
(PDFOperator operator, List<COSBase> arguments) process : T* Move to start of next text line.abstract void
OperatorProcessor.process
(PDFOperator operator, List<COSBase> arguments) process the operator.void
SetCharSpacing.process
(PDFOperator operator, List<COSBase> arguments) process : Tc Set character spacing.void
SetGraphicsStateParameters.process
(PDFOperator operator, List<COSBase> arguments) gs Set parameters from graphics state parameter dictionary.void
SetHorizontalTextScaling.process
(PDFOperator operator, List<COSBase> arguments) Tz Set horizontal text scaling.void
SetLineCapStyle.process
(PDFOperator operator, List<COSBase> arguments) Set the line cap style.void
SetLineDashPattern.process
(PDFOperator operator, List<COSBase> arguments) Set the line dash pattern.void
SetLineJoinStyle.process
(PDFOperator operator, List<COSBase> arguments) Set the line cap style.void
SetLineMiterLimit.process
(PDFOperator operator, List<COSBase> arguments) w Set miter limit.void
SetLineWidth.process
(PDFOperator operator, List<COSBase> arguments) w Set line width.void
SetMatrix.process
(PDFOperator operator, List<COSBase> arguments) Tm Set text matrix and text line matrix.void
SetMoveAndShow.process
(PDFOperator operator, List<COSBase> arguments) " Set word and character spacing, move to next line, and show text.void
SetNonStrokingCalRGBColor.process
(PDFOperator operator, List<COSBase> arguments) rg Set color space for non stroking operations.void
SetNonStrokingCMYKColor.process
(PDFOperator operator, List<COSBase> arguments) k Set color space for non stroking operations.void
SetNonStrokingColor.process
(PDFOperator operator, List<COSBase> arguments) sc,scn Set color space for non stroking operations.void
SetNonStrokingColorSpace.process
(PDFOperator operator, List<COSBase> arguments) cs Set color space for non stroking operations.void
SetNonStrokingDeviceN.process
(PDFOperator operator, List<COSBase> arguments) scn Set color space for non stroking operations.void
SetNonStrokingGrayColor.process
(PDFOperator operator, List<COSBase> arguments) rg Set color space for non stroking operations.void
SetNonStrokingICCBasedColor.process
(PDFOperator operator, List<COSBase> arguments) scn Set color space for non stroking operations.void
SetNonStrokingIndexed.process
(PDFOperator operator, List<COSBase> arguments) scn Set color space for non stroking operations.void
SetNonStrokingLabColor.process
(PDFOperator operator, List<COSBase> arguments) process the operator.void
SetNonStrokingPattern.process
(PDFOperator operator, List<COSBase> arguments) Set color space for non stroking operations.void
SetNonStrokingRGBColor.process
(PDFOperator operator, List<COSBase> arguments) rg Set color space for non stroking operations.void
SetNonStrokingSeparation.process
(PDFOperator operator, List<COSBase> arguments) scn Set color space for non stroking operations.void
SetStrokingCalRGBColor.process
(PDFOperator operator, List<COSBase> arguments) RG Set color space for stroking operations.void
SetStrokingCMYKColor.process
(PDFOperator operator, List<COSBase> arguments) K Set color space for stroking operations.void
SetStrokingColor.process
(PDFOperator operator, List<COSBase> arguments) SC,SCN Set color space for stroking operations.void
SetStrokingColorSpace.process
(PDFOperator operator, List<COSBase> arguments) CS Set color space for stroking operations.void
SetStrokingDeviceN.process
(PDFOperator operator, List<COSBase> arguments) scn Set color space for non stroking operations.void
SetStrokingGrayColor.process
(PDFOperator operator, List<COSBase> arguments) RG Set color space for stroking operations.void
SetStrokingICCBasedColor.process
(PDFOperator operator, List<COSBase> arguments) scn Set color space for stroking operations.void
SetStrokingIndexed.process
(PDFOperator operator, List<COSBase> arguments) scn Set color space for non stroking operations.void
SetStrokingLabColor.process
(PDFOperator operator, List<COSBase> arguments) process the operator.void
SetStrokingPattern.process
(PDFOperator operator, List<COSBase> arguments) Set pattern instead of a color space for stroking operations.void
SetStrokingRGBColor.process
(PDFOperator operator, List<COSBase> arguments) RG Set color space for stroking operations.void
SetStrokingSeparation.process
(PDFOperator operator, List<COSBase> arguments) scn Set color space for non stroking operations.void
SetTextFont.process
(PDFOperator operator, List<COSBase> arguments) Tf selectfont Set text font and size.void
SetTextLeading.process
(PDFOperator operator, List<COSBase> arguments) TL Set text leading.void
SetTextRenderingMode.process
(PDFOperator operator, List<COSBase> arguments) Tr Set text rendering mode.void
SetTextRise.process
(PDFOperator operator, List<COSBase> arguments) Ts Set text rise.void
SetWordSpacing.process
(PDFOperator operator, List<COSBase> arguments) Tw Set word spacing.void
ShowText.process
(PDFOperator operator, List<COSBase> arguments) Tj show Show text.void
ShowTextGlyph.process
(PDFOperator operator, 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 COSBaseModifier and TypeMethodDescriptionvoid
AppendRectangleToPath.process
(PDFOperator operator, List<COSBase> arguments) process : re : append rectangle to path.void
BeginInlineImage.process
(PDFOperator operator, List<COSBase> arguments) process : BI : begin inline image.void
ClipEvenOddRule.process
(PDFOperator operator, List<COSBase> arguments) process : W* : set clipping path using even odd rule.void
ClipNonZeroRule.process
(PDFOperator operator, List<COSBase> arguments) process : W : Set the clipping path using non zero winding rule.void
CloseFillEvenOddAndStrokePath.process
(PDFOperator operator, List<COSBase> arguments) fill and stroke the path.void
CloseFillNonZeroAndStrokePath.process
(PDFOperator operator, List<COSBase> arguments) fill and stroke the path.void
ClosePath.process
(PDFOperator operator, List<COSBase> arguments) process : h : Close path.void
CurveTo.process
(PDFOperator operator, List<COSBase> arguments) process : c : Append curved segment to path.void
CurveToReplicateFinalPoint.process
(PDFOperator operator, List<COSBase> arguments) process : y : Append curved segment to path (final point replicated).void
CurveToReplicateInitialPoint.process
(PDFOperator operator, List<COSBase> arguments) process : v : Append curved segment to path (initial point replicated).void
EndPath.process
(PDFOperator operator, List<COSBase> arguments) process : n : End path.void
FillEvenOddAndStrokePath.process
(PDFOperator operator, List<COSBase> arguments) fill and stroke the path.void
FillEvenOddRule.process
(PDFOperator operator, List<COSBase> arguments) process : f* : fill path using even odd rule.void
FillNonZeroAndStrokePath.process
(PDFOperator operator, List<COSBase> arguments) fill and stroke the path.void
FillNonZeroRule.process
(PDFOperator operator, List<COSBase> arguments) process : F/f : fill path using non zero winding rule.void
Invoke.process
(PDFOperator operator, List<COSBase> arguments) process : Do : Paint the specified XObject (section 4.7).void
LineTo.process
(PDFOperator operator, List<COSBase> arguments) process : l : Append straight line segment to path.void
MoveTo.process
(PDFOperator operator, List<COSBase> arguments) process : m : Begin new subpath.void
SetLineCapStyle.process
(PDFOperator operator, List<COSBase> arguments) Set the line cap style.void
SetLineDashPattern.process
(PDFOperator operator, List<COSBase> arguments) Set the line dash pattern.void
SetLineJoinStyle.process
(PDFOperator operator, List<COSBase> arguments) Set the line cap style.void
SetLineMiterLimit.process
(PDFOperator operator, List<COSBase> arguments) Set the line dash pattern.void
SetLineWidth.process
(PDFOperator operator, List<COSBase> arguments) w Set line width.void
SHFill.process
(PDFOperator operator, List<COSBase> arguments) process : sh : shade fill the clipping area.void
StrokePath.process
(PDFOperator operator, List<COSBase> arguments) S stroke the path.
COSDictionary.getDictionaryObject(COSName, COSName)
using COSName constants instead