Convert an image to bmp file
Good day,
I have a code that runs well using windows forms. This is the code:
>>System.Drawing.Image imgSource = System.Drawing.Image.FromFile("c:\\test.gif");
>>imgSource.Save("c:\\test.bmp", System.Drawing.Imaging.ImageFormat.Bmp);
But when I tried this on webforms, this error occured:
"A generic error occurred in GDI+."
How come?
Arthur