Convert RGB color to CMYK?

前端 未结 7 1736
谎友^
谎友^ 2020-11-28 12:09

I\'m looking for an algorithm to convert an RGB color to CMYK. Photoshop is performing the conversion below:

R = 220 G = 233 B = 174

C = 15 M = 0 Y = 40 K =

7条回答
  •  借酒劲吻你
    2020-11-28 12:44

    I think photoshop uses profile based conversions. Have a look at the documentation for the color options. If it is the case you won't be able to match this behavior with simple formula based solutions.

    I have found LCMS to be very handy, simple and efficient for this kind of task.I don't known if there is any .net binding for it...

提交回复
热议问题