Content for OpenOffice.org version 3.3.
:: com :: sun :: star :: rendering ::
|
| unpublished |
constants group ColorSpaceType |
|
|
- Usage Restrictions
- not published
- Description
- Categories for color spaces
|
| Constants |
| DEVICE_COLOR |
Unspecified device color space - use conversion functions to
convert to standard color spaces
|
| GREY |
Grey-value color space. |
| RGB |
RGB color space
|
| CMYK |
CMYK color space. |
| CMYKOG |
CMYKOG color space. |
| CIEXYZ |
Standard CieXYZ color space. |
| CIELAB |
Standard CieLab color space. |
| SRGB |
Standard sRGB color space. |
| HSV |
HSV color space. |
| HSL |
HSL color space. |
| YCBCR |
YCbCr color space. |
| INDEXED |
Indexed color space. |
| 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.
|
|
Top of Page
Copyright © 1995, 2010, Oracle and/or its affiliates. All rights reserved. Oracle and Java are registered trademarks of Oracle and/or its affiliates. Other names may be trademarks of their respective owners.