Constants' Details |
DEVICE_COLOR
const byte DEVICE_COLOR =0;
- Description
- Unspecified device color space - use conversion functions to
convert to standard color spaces
|
|
GREY
const byte GREY =1;
- Description
- Grey-value color space.
Use this for monochrome images.
|
|
RGB
const byte RGB =2;
- Description
- RGB color space
|
|
CMYK
const byte CMYK =3;
- Description
- CMYK color space.
See wikipedia
for a thorough explanation.
|
|
CMYKOG
const byte CMYKOG =4;
- Description
- CMYKOG color space.
See wikipedia
for a thorough explanation.
|
|
CIEXYZ
const byte CIEXYZ =5;
- Description
- Standard CieXYZ color space.
See wikipedia
for a thorough explanation.
|
|
CIELAB
const byte CIELAB =6;
- Description
- Standard CieLab color space.
See wikipedia
for a thorough explanation. Preferrable over CIEXYZ if
perceptual uniformity is an issue.
|
|
SRGB
const byte SRGB =7;
- Description
- Standard sRGB color space.
See wikipedia
for a thorough explanation.
|
|
HSV
const byte HSV =8;
- Description
- HSV color space.
Hue saturation value. See wikipedia
for a thorough explanation.
|
|
HSL
const byte HSL =9;
- Description
- HSL color space.
Hue saturation lightness. See wikipedia
for a thorough explanation
|
|
YCBCR
const byte YCBCR =10;
- Description
- YCbCr color space.
See wikipedia
for a thorough explanation. This color space is common for
digital video.
|
|
INDEXED
const byte INDEXED =11;
- Description
- Indexed color space.
The color components of this color space are in fact indices
into a color map.
|
|
Copyright © 2010 Sun Microsystems, Inc.