|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use COSArray | |
---|---|
org.apache.pdfbox.cos | These are the low level objects that make up a PDF document. |
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.common | High level PD classes that are used throughout several packages are placed in the PDModel common package. |
org.apache.pdfbox.pdmodel.common.function | This package contains functions that are available in the PDF specification. |
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.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.xobject | This package deals with images that are stored in a PDF document. |
org.apache.pdfbox.pdmodel.interactive.documentnavigation.destination | The destination package allows destinations into a pdf document to be specified. |
Uses of COSArray in org.apache.pdfbox.cos |
---|
Methods in org.apache.pdfbox.cos that return COSArray | |
---|---|
COSArray |
COSDocument.getDocumentID()
This will get the document ID. |
Methods in org.apache.pdfbox.cos with parameters of type COSArray | |
---|---|
void |
COSArray.addAll(COSArray objectList)
This will add all objects to this array. |
void |
COSDocument.setDocumentID(COSArray id)
This will set the document ID. |
Object |
ICOSVisitor.visitFromArray(COSArray obj)
Notification of visit to Array object. |
Uses of COSArray in org.apache.pdfbox.pdfparser |
---|
Methods in org.apache.pdfbox.pdfparser that return COSArray | |
---|---|
protected COSArray |
BaseParser.parseCOSArray()
This will parse a PDF array object. |
Uses of COSArray in org.apache.pdfbox.pdfwriter |
---|
Methods in org.apache.pdfbox.pdfwriter with parameters of type COSArray | |
---|---|
Object |
COSWriter.visitFromArray(COSArray obj)
visitFromArray method comment. |
Uses of COSArray in org.apache.pdfbox.pdmodel.common |
---|
Methods in org.apache.pdfbox.pdmodel.common that return COSArray | |
---|---|
static COSArray |
COSArrayList.converterToCOSArray(List cosObjectableList)
This will convert a list of COSObjectables to an array list of COSBase objects. |
static COSArray |
COSArrayList.convertStringListToCOSNameCOSArray(List strings)
This will take an list of string objects and return a COSArray of COSName objects. |
static COSArray |
COSArrayList.convertStringListToCOSStringCOSArray(List strings)
This will take an list of string objects and return a COSArray of COSName objects. |
COSArray |
PDRectangle.getCOSArray()
This will get the underlying array for this rectangle. |
COSArray |
PDMatrix.getCOSArray()
This will get the underlying array value. |
COSArray |
PDRange.getCOSArray()
This will get the underlying array value. |
COSArray |
COSArrayList.toList()
This will return then underlying COSArray. |
Methods in org.apache.pdfbox.pdmodel.common with parameters of type COSArray | |
---|---|
static List |
COSArrayList.convertCOSNameCOSArrayToList(COSArray nameArray)
This will take an array of COSName and return a COSArrayList of java.lang.String values. |
static List |
COSArrayList.convertCOSStringCOSArrayToList(COSArray stringArray)
This will take an array of COSString and return a COSArrayList of java.lang.String values. |
static List |
COSArrayList.convertFloatCOSArrayToList(COSArray floatArray)
This will take an array of COSNumbers and return a COSArrayList of java.lang.Float values. |
static List |
COSArrayList.convertIntegerCOSArrayToList(COSArray intArray)
This will take an array of COSNumbers and return a COSArrayList of java.lang.Integer values. |
Constructors in org.apache.pdfbox.pdmodel.common with parameters of type COSArray | |
---|---|
COSArrayList(List actualList,
COSArray cosArray)
Constructor. |
|
COSStreamArray(COSArray array)
Constructor. |
|
PDMatrix(COSArray array)
Constructor. |
|
PDRange(COSArray range)
Constructor assumes a starting index of 0. |
|
PDRange(COSArray range,
int index)
Constructor with an index into an array. |
|
PDRectangle(COSArray array)
Constructor. |
Uses of COSArray in org.apache.pdfbox.pdmodel.common.function |
---|
Methods in org.apache.pdfbox.pdmodel.common.function that return COSArray | |
---|---|
protected COSArray |
PDFunction.clipToRange(COSArray inputArray)
Clip the given input values to the ranges. |
COSArray |
PDFunctionType2.eval(COSArray input)
Evaluates the function at the given input. |
abstract COSArray |
PDFunction.eval(COSArray input)
Evaluates the function at the given input. |
COSArray |
PDFunctionType4.eval(COSArray input)
Evaluates the function at the given input. |
COSArray |
PDFunctionType0.eval(COSArray input)
Evaluates the function at the given input. |
COSArray |
PDFunctionType3.eval(COSArray input)
Evaluates the function at the given input. |
COSArray |
PDFunctionType3.getBounds()
Returns all bounds values as COSArray. |
COSArray |
PDFunctionType2.getC0()
Returns the C0 values of the function, 0 if empty. |
COSArray |
PDFunctionType2.getC1()
Returns the C1 values of the function, 1 if empty. |
COSArray |
PDFunctionType3.getEncode()
Returns all encode values as COSArray. |
COSArray |
PDFunctionType3.getFunctions()
Returns all functions values as COSArray. |
protected COSArray |
PDFunction.getRangeValues()
Returns all ranges for the output values as COSArray . |
COSArray |
PDFunctionType0.getSize()
The "Size" entry, which is the number of samples in each input dimension of the sample table. |
Methods in org.apache.pdfbox.pdmodel.common.function with parameters of type COSArray | |
---|---|
protected COSArray |
PDFunction.clipToRange(COSArray inputArray)
Clip the given input values to the ranges. |
COSArray |
PDFunctionType2.eval(COSArray input)
Evaluates the function at the given input. |
abstract COSArray |
PDFunction.eval(COSArray input)
Evaluates the function at the given input. |
COSArray |
PDFunctionType4.eval(COSArray input)
Evaluates the function at the given input. |
COSArray |
PDFunctionType0.eval(COSArray input)
Evaluates the function at the given input. |
COSArray |
PDFunctionType3.eval(COSArray input)
Evaluates the function at the given input. |
void |
PDFunctionType0.setDecodeValues(COSArray decodeValues)
This will set the decode values. |
void |
PDFunction.setDomainValues(COSArray domainValues)
This will set the domain values. |
void |
PDFunctionType0.setEncodeValues(COSArray encodeValues)
This will set the encode values. |
void |
PDFunction.setRangeValues(COSArray rangeValues)
This will set the range values. |
Uses of COSArray in org.apache.pdfbox.pdmodel.documentinterchange.taggedpdf |
---|
Constructors in org.apache.pdfbox.pdmodel.documentinterchange.taggedpdf with parameters of type COSArray | |
---|---|
PDFourColours(COSArray array)
|
Uses of COSArray in org.apache.pdfbox.pdmodel.fdf |
---|
Methods in org.apache.pdfbox.pdmodel.fdf that return COSArray | |
---|---|
COSArray |
FDFOptionElement.getCOSArray()
Convert this standard java object to a COS object. |
COSArray |
FDFDictionary.getID()
This is the FDF id. |
Methods in org.apache.pdfbox.pdmodel.fdf with parameters of type COSArray | |
---|---|
void |
FDFDictionary.setID(COSArray id)
This will set the FDF id. |
Constructors in org.apache.pdfbox.pdmodel.fdf with parameters of type COSArray | |
---|---|
FDFOptionElement(COSArray o)
Constructor. |
Uses of COSArray in org.apache.pdfbox.pdmodel.graphics |
---|
Methods in org.apache.pdfbox.pdmodel.graphics that return COSArray | |
---|---|
COSArray |
PDShading.getCoords()
Returns the coordinate array used by several of the gradient types. |
COSArray |
PDLineDashPattern.getCOSDashPattern()
Get the line dash pattern as a COS object. |
COSArray |
PDShading.getDomain()
Returns the Domain array used by several of the gradient types. |
COSArray |
PDShading.getExtend()
Returns the Extend array used by several of the gradient types. |
Constructors in org.apache.pdfbox.pdmodel.graphics with parameters of type COSArray | |
---|---|
PDFontSetting(COSArray fs)
Constructs a font setting from an existing array. |
|
PDLineDashPattern(COSArray ldp)
Constructs a line dash pattern from an existing array. |
|
PDLineDashPattern(COSArray ldp,
int phase)
Constructs a line dash pattern from an existing array. |
Uses of COSArray in org.apache.pdfbox.pdmodel.graphics.color |
---|
Fields in org.apache.pdfbox.pdmodel.graphics.color declared as COSArray | |
---|---|
protected COSArray |
PDColorSpace.array
array for the given parameters. |
Methods in org.apache.pdfbox.pdmodel.graphics.color that return COSArray | |
---|---|
COSArray |
PDSeparation.calculateColorValues(COSBase tintValue)
Returns the components of the color in the alternate colorspace for the given tint value. |
COSArray |
PDDeviceN.calculateColorValues(List<COSBase> tintValues)
Returns the components of the color in the alternate colorspace for the given tint value. |
COSArray |
PDGamma.getCOSArray()
Convert this standard java object to a COS object. |
COSArray |
PDColorState.getCOSColorSpaceValue()
This will get the color space values. |
Constructors in org.apache.pdfbox.pdmodel.graphics.color with parameters of type COSArray | |
---|---|
PDCalGray(COSArray gray)
Constructor with array. |
|
PDCalRGB(COSArray rgb)
Constructor with array. |
|
PDColorState(COSArray csValues)
Constructor with an existing color set. |
|
PDDeviceN(COSArray separation)
Constructor. |
|
PDGamma(COSArray array)
Constructor from COS object. |
|
PDICCBased(COSArray iccArray)
Constructor. |
|
PDIndexed(COSArray indexedArray)
Constructor. |
|
PDLab(COSArray lab)
Constructor with array. |
|
PDPattern(COSArray pattern)
Constructor. |
|
PDSeparation(COSArray separation)
Constructor. |
|
PDTristimulus(COSArray array)
Constructor from COS object. |
Uses of COSArray in org.apache.pdfbox.pdmodel.graphics.xobject |
---|
Methods in org.apache.pdfbox.pdmodel.graphics.xobject that return COSArray | |
---|---|
COSArray |
PDXObjectImage.getDecode()
Returns the Decode Array of an XObjectImage. |
COSArray |
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 COSArray | |
---|---|
BufferedImage |
CompositeImage.createMaskedImage(COSArray decodeArray)
This method applies the specified transparency mask to a given image and returns a new BufferedImage whose alpha values are computed from the transparency mask (smask) image. |
Uses of COSArray in org.apache.pdfbox.pdmodel.interactive.documentnavigation.destination |
---|
Fields in org.apache.pdfbox.pdmodel.interactive.documentnavigation.destination declared as COSArray | |
---|---|
protected COSArray |
PDPageDestination.array
Storage for the page destination. |
Methods in org.apache.pdfbox.pdmodel.interactive.documentnavigation.destination that return COSArray | |
---|---|
COSArray |
PDPageDestination.getCOSArray()
Convert this standard java object to a COS object. |
Constructors in org.apache.pdfbox.pdmodel.interactive.documentnavigation.destination with parameters of type COSArray | |
---|---|
PDPageDestination(COSArray arr)
Constructor to create empty page destination. |
|
PDPageFitDestination(COSArray arr)
Constructor from an existing destination array. |
|
PDPageFitHeightDestination(COSArray arr)
Constructor from an existing destination array. |
|
PDPageFitRectangleDestination(COSArray arr)
Constructor from an existing destination array. |
|
PDPageFitWidthDestination(COSArray arr)
Constructor from an existing destination array. |
|
PDPageXYZDestination(COSArray arr)
Constructor from an existing destination array. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |