Conversion.CMYKToRGB

Static Method in Conversion

Declaration

public static Color CMYKToRGB(float C, float M, float Y, float K)

Description

Converts CMYK components to an RGB color.

Parameters

CThe cyan component of the color in the range [0..1].
MThe magenta component of the color in the range [0..1].
YThe yellow component of the color in the range [0..1].
KThe black component of the color in the range [0..1].

Returns

ColorThe converted RGB color.