Monochrome Bitmap

Started by
3 comments, last by Anon Mike 15 years, 10 months ago
I have looked on Google for how monochrome bitmaps are stored yet always came up with ones that do not load monochrome versions, does anyone have any that they could share?
------------George Gough
Advertisement
You could use a full fledged image loading library: DevIL

I will check it out even though I would prefer to write it myself. Thanks.
------------George Gough
Monochrome bitmaps can use just one bitplane alone, use one channel in an RGB file, or use all 3 channels together using a formula like "Y = 0.3*R + 0.59*G + 0.11*B". So basically there isn't one single approach to storage, usage, or formats.
Developer Journal: The Life of Corman
How they're stored where? The answer is different depending on whether you mean in memory, in a file, what OS and/or graphics library you're using, etc.
-Mike

This topic is closed to new replies.

Advertisement