Foxit PDF SDK
|
Public Member Functions | |
constructor () | |
Construct an empty color. | |
constructor (color_space) | |
Constructor, with a color space object. More... | |
ConvertToCMYK (intent) | |
Convert to a CMYK color. More... | |
ConvertToRGB (intent) | |
Convert to a RGB color. More... | |
GetColorSpace () | |
Get the color space that current color belongs to. More... | |
GetValue () | |
Get component value array. More... | |
IsEmpty () | |
Check whether current object is empty or not. More... | |
SetValue (component_array) | |
Set component value array. More... | |
This class represents a color.
FSDK.Color.constructor | ( | color_space | ) |
Constructor, with a color space object.
[in] | color_space | A valid color space object. |
FSDK.Color.ConvertToCMYK | ( | intent | ) |
Convert to a CMYK color.
[in] | intent | (Reserved) Rendering intent used for color conversion. |
FSDK.Color.ConvertToRGB | ( | intent | ) |
Convert to a RGB color.
[in] | intent | (Reserved) Rendering intent used for color conversion. |
FSDK.Color.GetColorSpace | ( | ) |
Get the color space that current color belongs to.
FSDK.Color.GetValue | ( | ) |
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 FSDK.Color.GetColorSpace, and then get the count of componets by function FSDK.ColorSpace.GetComponentCount.
FSDK.Color.IsEmpty | ( | ) |
Check whether current object is empty or not.
When the current object is empty, that means current object is useless.
FSDK.Color.SetValue | ( | component_array | ) |
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 FSDK.Color.GetColorSpace, and then get the count of componets by function FSDK.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. |