org.pdfbox.pdmodel.graphics.color
Class PDPattern
- COSObjectable
This class represents a Pattern color space.
static String | NAME - The name of this color space.
|
ColorModel | createColorModel(int bpc) - Create a Java color model for this colorspace.
|
ColorSpace | createColorSpace() - Create a Java colorspace for this colorspace.
|
String | getName() - This will return the name of the color space.
|
int | getNumberOfComponents() - This will get the number of components that this color space is made up of.
|
NAME
public static final String NAME
The name of this color space.
PDPattern
public PDPattern()
Default constructor.
PDPattern
public PDPattern(COSArray pattern)
Constructor.
pattern
- The pattern array.
createColorModel
public ColorModel createColorModel(int bpc)
throws IOException
Create a Java color model for this colorspace.
- createColorModel in interface PDColorSpace
bpc
- The number of bits per component.
- A color model that can be used for Java AWT operations.
createColorSpace
public ColorSpace createColorSpace()
throws IOException
Create a Java colorspace for this colorspace.
- createColorSpace in interface PDColorSpace
- A color space that can be used for Java AWT operations.
getName
public String getName()
This will return the name of the color space.
- getName in interface PDColorSpace
- The name of the color space.
getNumberOfComponents
public int getNumberOfComponents()
throws IOException
This will get the number of components that this color space is made up of.
- getNumberOfComponents in interface PDColorSpace
- The number of components in this color space.