Click to See Complete Forum and Search --> : Bitmap


Dave2001
May 6th, 1999, 11:44 PM
How can I save a CBitmap to a .bmp file?

Dave2001,
Dave2999@hotmail.com

Uri
February 9th, 2000, 04:53 AM
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.