LibreOffice
LibreOffice 24.2 SDK API Reference
|
Categories for color spaces. More...
Variables | |
const byte | DEVICE_COLOR =0 |
Unspecified device color space - use conversion functions to convert to standard color spaces. More... | |
const byte | GREY =1 |
Grey-value color space. More... | |
const byte | RGB =2 |
RGB color space. More... | |
const byte | CMYK =3 |
CMYK color space. More... | |
const byte | CMYKOG =4 |
CMYKOG color space. More... | |
const byte | CIEXYZ =5 |
Standard CieXYZ color space. More... | |
const byte | CIELAB =6 |
Standard CieLab color space. More... | |
const byte | SRGB =7 |
Standard sRGB color space. More... | |
const byte | HSV =8 |
HSV color space. More... | |
const byte | HSL =9 |
HSL color space. More... | |
const byte | YCBCR =10 |
YCbCr color space. More... | |
const byte | INDEXED =11 |
Indexed color space. More... | |
Categories for color spaces.
const byte CIELAB =6 |
Standard CieLab color space.
See Wikipedia for a thorough explanation. Preferable over CIEXYZ if perceptual uniformity is an issue.
const byte CIEXYZ =5 |
Standard CieXYZ color space.
See Wikipedia for a thorough explanation.
const byte CMYK =3 |
CMYK color space.
See Wikipedia for a thorough explanation.
const byte CMYKOG =4 |
CMYKOG color space.
See Wikipedia for a thorough explanation.
const byte DEVICE_COLOR =0 |
Unspecified device color space - use conversion functions to convert to standard color spaces.
const byte GREY =1 |
Grey-value color space.
Use this for monochrome images.
const byte HSL =9 |
HSL color space.
Hue saturation lightness. See Wikipedia for a thorough explanation
const byte HSV =8 |
HSV color space.
Hue saturation value. See Wikipedia for a thorough explanation.
const byte INDEXED =11 |
Indexed color space.
The color components of this color space are in fact indices into a color map.
const byte RGB =2 |
RGB color space.
const byte SRGB =7 |
Standard sRGB color space.
See Wikipedia for a thorough explanation.
const byte YCBCR =10 |
YCbCr color space.
See Wikipedia for a thorough explanation. This color space is common for digital video.