ok, how do i calculate the cmyk version of a color if i have the rgb or the hex version of the color.
thanx in advance
Printable View
ok, how do i calculate the cmyk version of a color if i have the rgb or the hex version of the color.
thanx in advance
I'm not sure but I think you can calculate CMYK-values from RGB-values this way, according to my intuition:
C = (1-R)
M = (1-G)
Y = (1-B)
K = minimum of CMY. Correct C, M and Y for this, so that Cnew = C-K, Mnew = M-K and Ynew = Y-K
The minimum of all values is 0 and the maximum is 1.
Since I'm not sure about this, I would rather suggest to search the internet for this.