tags:

views:

564

answers:

2

How to Convert DIB to BMP?

+1  A: 

Check the API GdipCreateBitmapFromGdiDib

Example: http://www.codeproject.com/KB/GDI-plus/DIBtoBitmap.aspx

Stefan
A: 

Imagemagick's convert function will do this (and many other conversions) for you on the command line. Free, open source, available on all major platforms. This is a great piece of software that should be in anyone's toolbox.

Tim Howland