vote up 1 vote down star
1

This may be simple one, but 5 mins of Googling didn't give me the answer. How do you save and load bitmaps using .Net librabries?

I have an Image object and I need to save it to disk in some format (preferably png) and load back in later. A C# example would be great.

flag

4 Answers

vote up 11 vote down check

Here's a really simple example.

Top of code file

using System.Drawing;

In code

Image test = new Bitmap("picture.bmp");
test.Save("picture.png", System.Drawing.Imaging.ImageFormat.Png);

Remember to give write permissions to the ASPNET user for the folder where the image is to be saved.

link|flag
1  
Make sure you have write permissions for ASP.NET on the folder you want to save. – Daniel A. White Oct 6 '08 at 13:29
Bitmap is in the System.Drawing assembly. – Alex Lyman Oct 6 '08 at 14:16
OK, added it into the answer. – Vincent Oct 8 '08 at 20:21
vote up 1 vote down

Hiya, use the Image.Save() method.

A better explanation and code sample than I could provide can be found here:

MSDN

link|flag
vote up 1 vote down

About 10 seconds of google lead me to this example for the save method, you can dig around a bit more for the others.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.