How can I save a CBitmap to a .bmp file?
Dave2001,
[email protected]
Printable View
How can I save a CBitmap to a .bmp file?
Dave2001,
[email protected]
The .bmp data structure is like the DIB structure which Windows is using for "device independent bitmaps". You need to convert the CBitmap image (a device dependent bitmap) first to a DIB and then save the image to disk. Have a look at the bitmap section in www.codeguru.com. Anything you need you'll find there. Hope it helps.