Log In
Home
About
Programming
C++ Classes
Web Scripting
ITL
About ITL
Todos
Bazaar (bzr)
Home
>
ITL
> Converting CMYK to RGB
Converting CMYK to RGB
September 7th, 2009
Leave a comment
Go to comments
Representation of CMYK
(Values discussed here are in the range [0, 1]) In CMYK, black (K) is a minimum amount of black ink for all three CMY. The CMY components are then scaled inside the remaining range:
1
2
3
C' = (1-K)*C;
M' = (1-K)*M;
Y' = (1-K)*Y;
Black
Cyan
Magenta
Yellow
Ink Contribution (CMKY)
Cyan-Black Contribution
Result:
Magenta-Black Contribution
Result:
Yellow-Black Contribution
Result:
Once we scale the cyan, magenta and yellow components using the black component, we obtain a color on the CMY (no K) model.
Ink Contribution (CMY - no K)
These CMY are negatives of RGB, as in:
1
2
3
R = 1.0 - C;
G = 1.0 - M;
B = 1.0 - Y;
The final color:
Categories:
ITL
Tags:
Comments (0)
Trackbacks (0)
Leave a comment
Trackback
No comments yet.
No trackbacks yet.
Name (required)
E-Mail (will not be published) (required)
Website
Subscribe to comments feed
CAPTCHA Code
*
Please leave these two fields as-is:
Protected by
Invisible Defender
. Showed
403
to
4,347
bad guys.
webbzr – php to browse a bzr repository from a web page