public class LabColorSpace extends ColorSpace
DEVICE_CMYK, DEVICE_GRAY, DEVICE_RGB, DEVICE_RGBA, LAB, LAB_A| Constructor and Description |
|---|
LabColorSpace(java.util.List<java.lang.Double> whitePoint)
Create a Lab color space.
|
LabColorSpace(java.util.List<java.lang.Double> whitePoint,
java.util.List<java.lang.Double> blackPoint,
java.util.List<java.lang.Double> range)
Create a Lab color space.
|
| Modifier and Type | Method and Description |
|---|---|
void |
delete() |
java.util.List<java.lang.Double> |
getBlackPoint()
An array of three numbers specifying the tristimulus value, in the CIE 1931 XYZ space, of the diffuse black point.
|
java.util.List<java.lang.Double> |
getRange()
An array of four numbers [ amin amax bmin bmax ] specifying the range of valid values for the a* and b* (B and C) components of the color space.
|
java.util.List<java.lang.Double> |
getWhitePoint()
An array of three numbers specifying the tristimulus value, in the CIE 1931 XYZ space, of the diffuse white point.
|
equals, getName, getNumComponents, getPDFObject, toStringpublic LabColorSpace(java.util.List<java.lang.Double> whitePoint,
java.util.List<java.lang.Double> blackPoint,
java.util.List<java.lang.Double> range)
whitePoint - An array of three numbers specifying the tristimulus value, in the CIE 1931 XYZ space, of the diffuse white point. The numbers X and Z must be positive, and Y must be equal to 1.0.blackPoint - An array of three numbers specifying the tristimulus value, in the CIE 1931 XYZ space, of the diffuse black point. All three of these numbers must be non-negative.range - An array of four numbers [ amin amax bmin bmax ] specifying the range of valid values for the a* and b* (B and C) components of the color space.public LabColorSpace(java.util.List<java.lang.Double> whitePoint)
The blackPoint defaults to [0.0, 0.0, 0.0].
The range defaults to [-100 100 -100 100]
whitePoint - An array of three numbers specifying the tristimulus value, in the CIE 1931 XYZ space, of the diffuse white point. The numbers X and Z must be positive, and Y must be equal to 1.0.public void delete()
delete in class ColorSpacepublic java.util.List<java.lang.Double> getWhitePoint()
public java.util.List<java.lang.Double> getBlackPoint()
public java.util.List<java.lang.Double> getRange()