CMConvertFixedXYZToXYZ
Converts colors specified in XYZ color space whose components are expressed as Fixed XYZ 32-bit signed values of type CMFixedXYZColor to equivalent colors expressed as XYZ 16-bit unsigned values of type CMXYZColor.
Declaration
CMError CMConvertFixedXYZToXYZ (
const CMFixedXYZColor *src,
CMXYZColor *dst,
size_t count
);Parameters
- src:
A pointer to an array containing the list of Fixed XYZ colors to convert to XYZ colors.
- dst:
A pointer to an array containing the list of colors resulting from the conversion specified as XYZ colors.
- count:
The number of colors to convert.
Return Value
A CMError value. See Result Codes.
Overview
The CMConvertFixedXYZToXYZ function converts one or more colors defined in the Fixed XYZ color space to equivalent colors defined in the XYZ color space. The XYZ color space is device independent.
If your application does not require that you preserve the source color list, you can pass the pointer to the same color list array as the src and dst parameters and allow the CMConvertFixedXYZToXYZ function to overwrite the source colors with the resulting converted color specifications.