public class PDLab extends PDColorSpace
| Modifier and Type | Field and Description |
|---|---|
static String |
NAME
The name of this color space.
|
| Constructor and Description |
|---|
PDLab()
Constructor.
|
PDLab(COSArray lab)
Constructor with array.
|
| Modifier and Type | Method and Description |
|---|---|
ColorModel |
createColorModel(int bpc)
Create a Java color model for this colorspace.
|
protected ColorSpace |
createColorSpace()
Create a Java colorspace for this colorspace.
|
PDRange |
getARange()
This will get the valid range for the "a" component.
|
PDTristimulus |
getBlackPoint()
This will return the BlackPoint tristimulus.
|
PDRange |
getBRange()
This will get the valid range for the "b" component.
|
COSBase |
getCOSObject()
Convert this standard java object to a COS object.
|
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.
|
PDTristimulus |
getWhitePoint()
This will return the whitepoint tristimulus.
|
void |
setARange(PDRange range)
This will set the a range for the "a" component.
|
void |
setBlackPoint(PDTristimulus bp)
This will set the BlackPoint tristimulus.
|
void |
setBRange(PDRange range)
This will set the "b" range for this color space.
|
void |
setWhitePoint(PDTristimulus wp)
This will set the whitepoint tristimulus.
|
getJavaColorSpace, toStringpublic static final String NAME
public PDLab()
public PDLab(COSArray lab)
lab - The underlying color space.public String getName()
getName in class PDColorSpacepublic COSBase getCOSObject()
getCOSObject in interface COSObjectablegetCOSObject in class PDColorSpaceprotected ColorSpace createColorSpace() throws IOException
createColorSpace in class PDColorSpaceIOException - If there is an error creating the color space.public ColorModel createColorModel(int bpc) throws IOException
createColorModel in class PDColorSpacebpc - The number of bits per component.IOException - If there is an error creating the color model.public int getNumberOfComponents()
throws IOException
getNumberOfComponents in class PDColorSpaceIOException - If there is an error getting the number of color components.public PDTristimulus getWhitePoint()
public void setWhitePoint(PDTristimulus wp)
wp - The whitepoint tristimulus.public PDTristimulus getBlackPoint()
public void setBlackPoint(PDTristimulus bp)
bp - The BlackPoint tristimulus.public PDRange getARange()
public void setARange(PDRange range)
range - the new range for the "a" component,
or null if defaults (-100..100) are to be set.public PDRange getBRange()
public void setBRange(PDRange range)
range - the new range for the "b" component,
or null if defaults (-100..100) are to be set.Copyright © 2002-2015 The Apache Software Foundation. All Rights Reserved.