how to convert byte array into image?


How can I convert byte array into image using asp.net C#? I need to convert model into image for rendering it on MVC view


Thank you


Asked by:- Vipin
2
: 13586 At:- 6/19/2017 10:36:11 AM
asp.net C# byte-array image







3 Answers
profileImage Answered by:- jaya

you can do this with the following code:

public Image byteArrayToImage(byte[] source)
        {
            MemoryStream ms = new MemoryStream(source);
            Image ret = Image.FromStream(ms);
            return ret;
        }

OR in a better way to dispose MemoryStream

public Image byteArrayToImage(byte[] bytesArr)
{
    using (MemoryStream memstr = new MemoryStream(bytesArr))
    {
        Image img = Image.FromStream(memstr);
        return img;
    }
}

that's it, above code should resolve your issue

thanks

3
At:- 6/19/2017 1:10:53 PM Updated at:- 11/15/2022 6:52:27 AM
thanks, the above answer worked for me 0
By : Vipin - at :- 8/13/2017 8:17:09 AM


profileImage Answered by:- vikas_jk

Here is another solution, to convert Byte array into Image using C#

Convert Byte Array to Image File using C#

  // ImageConverter object used to convert byte arrays containing JPEG or PNG file images into 
  //  Bitmap objects. This is static and only gets instantiated once.
  private static readonly ImageConverter _imageConverter = new ImageConverter();


//Converts image into Byte array
  // <returns>byte array image of a PNG file containing the image</returns>
  public static byte[] CopyImageToByteArray(Image theImage)
  {
     using (MemoryStream memoryStream = new MemoryStream())
     {
        theImage.Save(memoryStream, ImageFormat.Png);
        return memoryStream.ToArray();
     }
  }

//Converts Byte Array ino image
 public static Bitmap GetImageFromByteArray(byte[] byteArray)
  {
     Bitmap bm = (Bitmap)_imageConverter.ConvertFrom(byteArray);

     if (bm != null && (bm.HorizontalResolution != (int)bm.HorizontalResolution ||
                        bm.VerticalResolution != (int)bm.VerticalResolution))
     {
        // Correct a strange glitch that has been observed in the test program when converting 
        //  from a PNG file image created by CopyImageToByteArray() - the dpi value "drifts" 
        //  slightly away from the nominal integer value
        bm.SetResolution((int)(bm.HorizontalResolution + 0.5f), 
                         (int)(bm.VerticalResolution + 0.5f));
     }

     return bm;
  }

Note: To get the Image from a jpg or png file you should read the file into a byte array using File.ReadAllBytes():

Bitmap newBitmap = GetImageFromByteArray(File.ReadAllBytes(fileName));

Or you can simply try these steps to convert image into byte array

  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), to save it as image.
  4. Return saved file path.

You would have to refer System.Drawing.Imaging and use a using block for the stream.

3
At:- 7/28/2017 7:06:04 AM Updated at:- 3/11/2018 7:16:29 PM


profileImage Answered by:- neena

Here is the code for image to byte and byte to image conversion in C#

public byte[] imageToByteArray(System.Drawing.Image imageIn)
{
    MemoryStream ms = new MemoryStream();
    imageIn.Save(ms,System.Drawing.Imaging.ImageFormat.Gif);
    return ms.ToArray();
}

public Image byteArrayToImage(byte[] byteArrayIn)
{
    MemoryStream ms = new MemoryStream(byteArrayIn);
    Image returnImage = Image.FromStream(ms);
    return returnImage;
}

Hope it helps.

3
At:- 5/30/2021 7:41:04 AM
This one is shorter and easier solution, thanks 0
By : vikas_jk - at :- 10/12/2021 10:19:25 AM






Login/Register to answer
Or
Register directly by posting answer/details

Full Name *

Email *




By posting your answer you agree on privacy policy & terms of use