Browse by Tags

All Tags » Software Development » C++ » MFC (RSS)
Sorry, but there are no more tags available to filter with.

Save CBitmap to File

It has always astounded me why the CBitmap class never implemented saving to a file. Here's a nice and tidy way: #include <atlimage.h> #include <Gdiplusimaging.h> //... CBitmap bitmap; bitmap.CreateBitmap(width, height, 1, 32, rgbData...