Contents

CMConvertLuvToXYZ

Converts colors specified in the L*u*v* color space to the XYZ color space.

Declaration

CMError CMConvertLuvToXYZ (
   const CMColor *src,
   const CMXYZColor *white,
   CMColor *dst,
   size_t count
);

Parameters

  • src:

    A pointer to an array containing the list of L*u*v* colors to convert.

  • white:

    A pointer to a reference white point.

  • dst:

    A pointer to an array containing the list of colors, resulting from the conversion, as specified in the XYZ color space.

  • count:

    The number of colors to convert.

Return Value

A CMError value. See Result Codes.

Overview

The CMConvertLuvToXYZ function converts one or more colors defined in the L*u*v color space to equivalent colors defined in the XYZ color space. Both color spaces are device independent.

See Also

Converting Colors