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
C | The cyan component of the color in the range [0..1]. |
M | The magenta component of the color in the range [0..1]. |
Y | The yellow component of the color in the range [0..1]. |
K | The black component of the color in the range [0..1]. |
Returns
Color | The converted RGB color. |