views:

70

answers:

2

Hi,

I have browsed and uploaded a png/jpg file in my MVC web app. I have stored this file as byte[] in my database. Now I want to read and convert the byte[] to original file. How can i achieve this?

thanks, kapil

+6  A: 
  1. Create a MemoryStream passing the array in the constructor.
  2. Read the image from the stream using Image.FromStream.
  3. Call theImg.Save("theimage.jpg", ImageFormat.Jpeg).

Remember to reference System.Drawing.Imaging and use a using block for the stream.

Simon Brown
How can i store it in a .png/.jpg file?
kapil
img.Save("filename"). Default save format is png.
Mark H
+1  A: 

Create a memory stream from the byte[] array in your database and then use Image.FromStream.

byte[] image = GetImageFromDatabase();
MemoryStream ms = new MemoryStream(image);
Image i = Image.FromStream(ms);
George