colour.CMYK_to_CMY#
- colour.CMYK_to_CMY(CMYK: ArrayLike) NDArrayFloat [source]#
Convert from CMYK colourspace to CMY colourspace.
- Parameters:
CMYK (ArrayLike) – CMYK colourspace array.
- Returns:
CMY array.
- Return type:
Notes
Domain
Scale - Reference
Scale - 1
CMYK
[0, 1]
[0, 1]
Range
Scale - Reference
Scale - 1
CMY
[0, 1]
[0, 1]
References
[EasyRGBa]
Examples
>>> CMYK = np.array([0.50000000, 0.00000000, 0.74400000, 0.01960784]) >>> CMYK_to_CMY(CMYK) array([ 0.5098039..., 0.0196078..., 0.7490196...])