How do I create a 32 bit CMYK file. #807
Answered
by
derekjohn37
derekjohn37
asked this question in
Help
-
I am trying to create a 32 bit per pixel (8bit per channel) bitmap from 4 GDI+ bitmaps, each one representing C,M,Y and K. I am using bitmap lockBits to load pixel data into the 'pixels' byte array, Code below gives a 24 bpp file no matter what I do. Any idea what I am missing?
|
Beta Was this translation helpful? Give feedback.
Answered by
derekjohn37
Dec 13, 2020
Replies: 1 comment
-
Slept on it then answered my own question. Should have used Tiff format not Bmp. 'output.Write("Output.tif");' |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
derekjohn37
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Slept on it then answered my own question. Should have used Tiff format not Bmp. 'output.Write("Output.tif");'
Bmp does not support CMYK. Silly mistake!