what is algorithm of photoshop for converting rgb to cmyk as percentage ?

for example:

R   G   B      C    M    Y    K
0   0   0   => 75%  68%  67%  90%
3   0   0   => 100% 100% 100% 100%
149 91  56  => 32%  65%  84%  21% 
255 255 255 => 0%   0%   0%   0%

I'm using javascript

有帮助吗?

解决方案

RGB is converted to CMYK and vice versa by profile through CIE-Lab values.

CIE-Lab is a kind of "universal" color space connected to what people see by eyes.

Color properties of R, G and B values are contained in concrete RGB profile, and CMYK properties are contained in concrete CMYK profile as well as method how situations when one color can be obtained by different CMYK combinations should be resolved.

Some profiles have formulas, some profiles have interpolation matrix obtained by calibration.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top