[Top]
Colors
|
Method Colors.cmyk_to_rgb()
- Method
cmyk_to_rgb
-
array(int(0..255)) Colors.cmyk_to_rgb(array(int(0..100)) cmyk)
array(int(0..255)) Colors.cmyk_to_rgb(int(0..100) c, int(0..100) m, int(0..100) y, int(0..100) k)
- Description
-
This function return the RGB value of the color
describe by the provided CMYK value. It is essentially
calling Image.Color.cmyk(c,m,y,k)->rgb()
- See also
-
Colors.rgb_to_cmyk()
Image.Color.cmyk()
|