Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Using C#, is there a better way to convert a Windows Bitmap to a byte[] than saving to a temporary file and reading the result using a FileStream?

share|improve this question

8 Answers

up vote 46 down vote accepted

There are a couple ways.

ImageConverter

public static byte[] ImageToByte(Image img)
{
    ImageConverter converter = new ImageConverter();
    return (byte[])converter.ConvertTo(img, typeof(byte[]));
}

This one is convenient because it doesn't require a lot of code.

Memory Stream

public static byte[] ImageToByte2(Image img)
{
    byte[] byteArray = new byte[0];
    using (MemoryStream stream = new MemoryStream())
    {
        img.Save(stream, System.Drawing.Imaging.ImageFormat.Png);
        stream.Close();

        byteArray = stream.ToArray();
    }
    return byteArray;
}

This one is equivalent to what you are doing, except the file is saved to memory instead of to disk. Although more code you have the option of ImageFormat and it can be easily modified between saving to memory or disk.

Source: http://www.vcskicks.com/image-to-byte.php

share|improve this answer

A MemoryStream can be helpful for this. You could put it in an extension method:

public static class ImageExtensions
{
    public static byte[] ToByteArray(this Image image, ImageFormat format)
    {
        using(MemoryStream ms = new MemoryStream())
        {
            image.Save(ms, format);
            return ms.ToArray();
        }
    }
}

You could just use it like:

var image = new Bitmap(10, 10);
// Draw your image
byte[] arr = image.ToByteArray(ImageFormat.Bmp);

I partially disagree with prestomanifto's answer in regards to the ImageConverter. Do not use ImageConverter. There's nothing technically wrong with it, but simply the fact that it uses boxing/unboxing from object tells me it's code from the old dark places of the .NET framework and its not ideal to use with image processing (it's overkill for converting to a byte[] at least), especially when you consider the following.

I took a look at the ImageConverter code used by the .Net framework, and internally it uses code almost identical to the one I provided above. It creates a new MemoryStream, saves the Bitmap in whatever format it was in when you provided it, and returns the array. Skip the extra overhead of creating an ImageConverter class by using MemoryStream

share|improve this answer
Lovely. That'll do! I take it you'll want to dispose of the MemoryStream, though - care to update? – Jeremy McGee Sep 8 '11 at 15:39
I've updated my answer with some discussion about why not to use ImageConverter, as your selected answer suggests, as well as the addition of disposal. – Christopher Currens Sep 8 '11 at 16:39
Nice use of an extension method, I like it! – Dude Pascalou Jul 17 '12 at 8:59
+1 for looking into ImageConverter and reporting the results of your research. But I don't think what you've discovered warrants the statement "Do not use ImageConverter." It definitely provides useful services going the other way, from byte array to Image, for example setting the image resolution (dpi). And the "extra overhead of creating an ImageConverter class" is presumably negligible, and only needs to be done once irrespective of how many times you use it. – RenniePet May 16 at 0:42

Save the Image to a MemoryStream and then grab the byte array.

http://msdn.microsoft.com/en-us/library/ms142148.aspx

  Byte[] data;

  using (var memoryStream = new MemoryStream())
  {
    image.Save(memoryStream, ImageFormat.Bmp);

    data = memoryStream.ToArray();
  }
share|improve this answer

Try the following:

MemoryStream stream = new MemoryStream();
Bitmap bitmap = new Bitmap();
bitmap.Save(stream, ImageFormat.Jpeg);

byte[] byteArray = stream.GetBuffer();

Make sure you are using:

System.Drawing & using System.Drawing.Imaging;
share|improve this answer
MemoryStream ms = new MemoryStream();
yourBitmap.Save(ms, ImageFormat.Bmp);
byte[] bitmapData = ms.ToArray();
share|improve this answer

Use a MemoryStream instead of a FileStream, like this:

MemoryStream ms = new MemoryStream();
bmp.Save (ms, ImageFormat.Jpeg);
byte[] bmpBytes = ms.ToArray();
share|improve this answer
You probably want ToArray, not GetBuffer. – vcsjones Sep 8 '11 at 15:43
GetBuffer returns an array of unsigned bytes (byte array) – Jeff Reddy Sep 8 '11 at 16:09
3  
It could have filler data that is not part of the image. From docs: Note that the buffer contains allocated bytes which might be unused. For example, if the string "test" is written into the MemoryStream object, the length of the buffer returned from GetBuffer is 256, not 4, with 252 bytes unused. To obtain only the data in the buffer, use the ToArray method. So now the byte array from GetBuffer will return the image plus unused bytes, which will probably result in a corrupt image. – vcsjones Sep 8 '11 at 16:13
1  
Good to know. Thanks for the comment vcs! – Jeff Reddy Sep 8 '11 at 17:08

I believe you may simply do:

ImageConverter converter = new ImageConverter();
var bytes = (byte[])converter.ConvertTo(img, typeof(byte[]));
share|improve this answer

Hi Please follow this link for converting bitmap to byte array http://www.vbforums.com/showthread.php?t=358917

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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