Tagged Questions
0
votes
2answers
166 views
RGB to CMY color model using c++
This is the formula that we use to convert RGB to respective CMY format:
C = 1 - ( R / 255 )
M = 1 - ( G / 255 )
Y = 1 - ( B / 255 )
I am trying to display the CMY image after applying this formula ...
1
vote
1answer
120 views
How to get and set a pixel's color in the CMYK format?
Can I set a pixel's color in a Bitmap image using the CMYK format? Or must I convert the color to RGB values?
1
vote
0answers
210 views
Looking for graphics library like cairo but with CMYK support
I know Cairo can't produce CMYK PDF's - the topic comes up from time to time but still seems a way off yet (if at all).
My requirement is a graphics library (with PHP wrapper / class) that can ...
11
votes
6answers
2k views
How to identify CMYK images in ASP.NET using C#
Does anybody know how to properly identify CMYK images in ASP.NET using C#? When I check the Flags attribute of a Bitmap instance, I get incorrect results.
I have created three images to test this: ...
