Using Bitmap.Save Help

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How can I convert image for display from .GIF to .WBMP by using C#?

I cannot see for imageformat type by using function:

Bitmap.Save(OutputStream, System.Drawing.Imaging.ImageFormat.Gif)

Or may be ImageFormat does not support WBMP.
 
Hi edisonlee,

There is no WBMP support in ImageFormat. You will have to convert it
yourself, which might not be very difficult if you can get the WBMP
specifications.
 
Back
Top