imColorXYZ2RGB

Converts CIE XYZ to Rec 709 RGB (all linear). \n * ITU-R Recommendation BT.709 (D65 white point). \n \verbatim 0 <= XYZ <= 1 ; 0 <= RGB <= 1

R = 3.2406 *X - 1.5372 *Y - 0.4986 *Z G = -0.9689 *X + 1.8758 *Y + 0.0415 *Z B = 0.0557 *X - 0.2040 *Y + 1.0570 *Z \endverbatim * \ingroup color

version(IM)
pure nothrow @nogc @safe
void
imColorXYZ2RGB
(
T
)
(
const T X
,
const T Y
,
const T Z
,
ref T R
,
ref T G
,
ref T B
)
if (
isNumeric!T
)

Meta