Can any one let me know how to save 1BPP , 4BPP and 8BPP as Bitmap. I have bits in the image, width and height.
Please let me know how to save that as bitmap.
|
Can any one let me know how to save 1BPP , 4BPP and 8BPP as Bitmap. I have bits in the image, width and height. Please let me know how to save that as bitmap. |
|||
|
|
For Windows and C++, the easiest way is Gdiplus. Here's some pseudo code.
You can get a list of pixel formats defined by GDI plus here. Most of what you need is defined by the Bitmap class, which inherits from the Image class, which defines the Save method. The encoder clsid, required by the "save" method is a bit tricky to get. But see my posting here on how to acquire this value. |
|||
|
|
Change to parameter in Create() appropriately. |
|||
|
|
|
How to save bitmap to file? If you can apply some tweaks to this code after reading Bitmap types - MSDN it should work! |
|||
|
|