-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Suppose there are two colors defined in CMYK:
color1 = 30, 40, 50, 60
color2 = 50, 60, 70, 80
If they were to be printed what values would the resulting color have?
color_new = min(cyan1 + cyan2, 100), min(magenta1 + magenta2, 100), min(yellow1 + yellow2, 100), min(black1 + black2, 100)?
Suppose…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have a problem with converting a CMYK Color to RGB.
In the internet there is many formulas to convert it but for example when I convert CMYK (0,100,100,0) to RGB, it get value (255 0 0) but in Adobe Photoshop RGB value is (237,28,36) and I want this one. Is anybody know how to convert it with java…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Is it possible to use PCL XL to print CMYK composite halftone (1-bit) data? Or do I have to somehow convert it to 8bit RGB data?
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I am trying to create a image sized 1X1 in CMYK color space.
as first step I am creating bitmapContext as
CGColorSpaceRef cmykcolorSpace = CGColorSpaceCreateDeviceCMYK();
CGContextRef currentcontext = CGBitmapContextCreate(NULL,
1,
…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi,
I have a CMYK colorspace in indesign, i want to convert that as RGB color space, I got some codes, but I am getting incorrect data.
Some of the codes which I tried are given below
double cyan = 35.0;
double magenta = 29.0;
double yellow = 0.0;
double black = 16.0;
cyan…
>>> More