Foxit PDF SDK
|
Public Member Functions | |
Color () | |
Construct an empty color. | |
Color (ColorSpace color_space) | |
Constructor, with a color space object. More... | |
Color (Color other) | |
Constructor, with another color object. More... | |
Color | ConvertToCMYK (ColorSpace.RenderingIntent intent) |
Convert to a CMYK color. More... | |
Color | ConvertToRGB (ColorSpace.RenderingIntent intent) |
Convert to a RGB color. More... | |
ColorSpace | GetColorSpace () |
Get the color space that current color belongs to. More... | |
FloatArray | GetValue () |
Get component value array. More... | |
bool | IsEmpty () |
Check whether current object is empty or not. More... | |
void | SetValue (FloatArray component_array) |
Set component value array. More... | |
This class represents a color.
|
inline |
Constructor, with a color space object.
[in] | color_space | A valid color space object. |
|
inline |
Constructor, with another color object.
[in] | other | Another Color object. |
|
inline |
Convert to a CMYK color.
[in] | intent | (Reserved) Rendering intent used for color conversion. |
|
inline |
Convert to a RGB color.
[in] | intent | (Reserved) Rendering intent used for color conversion. |
|
inline |
Get the color space that current color belongs to.
|
inline |
Get component value array.
The count of components depends on the color space that current color belongs to. User can get the color space object by function Color.GetColorSpace , and then get the count of componets by function ColorSpace.GetComponentCount .
|
inline |
Check whether current object is empty or not.
When the current object is empty, that means current object is useless.
|
inline |
Set component value array.
The count of components depends on the color space that current color belongs to. User can get the color space object by function Color.GetColorSpace , and then get the count of componets by function ColorSpace.GetComponentCount .
[in] | component_array | A component value array. The count of components in this array should match the count of components of the color space that current color belongs to. Valid range of each component value: from 0.0 to 1.0. |