简体   繁体   中英

convert binary to bitmap using memory stream

Hi I wanna convert binary array to bitmap and show image in a picturebox . I wrote the following code but I got exception that says that the parameter is not valid .

  public static Bitmap ByteToImage(byte[] blob)
    {
        MemoryStream mStream = new MemoryStream();
        byte[] pData = blob;
        mStream.Write(pData, 0, Convert.ToInt32(pData.Length));
        Bitmap bm = new Bitmap(mStream);
        mStream.Dispose();
        return bm;

    }

It really depends on what is in blob . Is it a valid bitmap format (like PNG, BMP, GIF, etc?). If it is raw byte information about the pixels in the bitmap, you can not do it like that.

It may help to rewind the stream to the beginning using mStream.Seek(0, SeekOrigin.Begin) before the line Bitmap bm = new Bitmap(mStream); .

public static Bitmap ByteToImage(byte[] blob)
{
    using (MemoryStream mStream = new MemoryStream())
    {
         mStream.Write(blob, 0, blob.Length);
         mStream.Seek(0, SeekOrigin.Begin);

         Bitmap bm = new Bitmap(mStream);
         return bm;
    }
}

Don't dispose of the MemoryStream. It now belongs to the image object and will be disposed when you dispose the image.

Also consider doing it like this

var ms = new MemoryStream(blob);
var img = Image.FromStream(ms);
.....
img.Dispose(); //once you are done with the image.
System.IO.MemoryStream mStrm = new System.IO.MemoryStream(your byte array);
Image im = Image.FromStream(mStrm);
im.Save("image.bmp");

Try this. If you still get any error or exception; please post your bytes which you are trying to convert to image. There should be problem in your image stream....

I'm not sure this codes will work for you but you can follow instructions like this;

byte[] pData = blob;
MemoryStream ms = new MemoryStream(pData);
return Bitmap.FromResource(ms);

Bitmap.FromResource from MSDN;

Creates a Bitmap from the specified Windows resource.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM