I have a Bitmap in CMYK mode, which doesn't show correctly, and at some point not at all, on Android. Googling didn't return many answers, so I have to ask here how do I handle CMYK mode images?
Thanks
UPDATE
Ok, more info as requested. I have a image that is in the assets, and I construct a Bitmap out of it. Then when I construct the Bitmap I do it like:
Bitmap bm = Bitmap.createBitmap(width, height, Config.ARGB_8888);
The Image is in CMYK mode. When I put it on a ImageView - it appears as white box. Not shown.
Hope this helps.