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

I have a BitmapImage that I'm using in a WPF application, I later want to save it to a database as a byte array (I guess it's the best way), how can I perform this conversion?

Or, alternatively, is there a better way to save a BitmapImage (or any of its base classes, BitmapSource or ImageSource) to a data repository?

share|improve this question

4 Answers

up vote 10 down vote accepted

To convert to a byte[] you can use a MemoryStream:

byte[] data;
JpegBitmapEncoder encoder = new JpegBitmapEncoder();
encoder.Frames.Add(BitmapFrame.Create(bitmapImage));
using(MemoryStream ms = new MemoryStream())
{
    encoder.Save(ms);
    data = ms.ToArray();
}

Instead of the JpegBitmapEncoder you can use whatever BitmapEncoder you like as casperOne said.

If you are using MS SQL you could also use a image-Column as MS SQL supports that datatype, but you still would need to convert the BitmapImage somehow.

share|improve this answer
That would work fine with a Bitmap, but I think he's talking about a BitmapImage, which doesn't have a save method. – Andrew Barrett Jul 6 '11 at 14:07
@Andrew: Just saw that too and adapted my example, thanks... – chrfin Jul 6 '11 at 14:09
Great, thank you! – So Many Goblins Jul 6 '11 at 15:08

You will have to use an instance of a class that derives from BitmapEncoder (such as BmpBitmapEncoder) and call the Save method to save the BitmapSource to a Stream.

You would choose the specific encoder depending on the format you want to save the image in.

share|improve this answer
Can you provide a code sample? Let's say for simplicity I want PNG (that's the format loaded into the BitmapImage). – So Many Goblins Jul 6 '11 at 14:46
nvm, chrfin provided the code I needed, thank you! – So Many Goblins Jul 6 '11 at 15:08

write it to a MemoryStream, then you can access the bytes from there. something kinda like this:

public Byte[] ImageToByte(BitmapImage imageSource)
{
    Stream stream = imageSource.StreamSource;
    Byte[] buffer = null;
    if (stream != null && stream.Length > 0)
    {
        using (BinaryReader br = new BinaryReader(stream))
        {
            buffer = br.ReadBytes((Int32)stream.Length);
        }
    }

    return buffer;
}
share|improve this answer
I think that doesn't work if you are using UriSource to load the image, but I'm not shure... – chrfin Jul 6 '11 at 14:16
@chrfin mmmm, dunno havn't tried it. should work fine for his WPF app, tho – Muad'Dib Jul 6 '11 at 14:27
My StreamSource property on the BitmapImage is null for some reason, any idea why? – So Many Goblins Jul 6 '11 at 14:39
@So: because you didn't load it from a stream. This isn't going to work for you. – user7116 Jul 6 '11 at 14:43

Just use a MemoryStream.


byte[] data = null;

using(MemoryStream ms = new MemoryStream())
{
    bitmapImage.Save(ms);
    data = ms.ToArray();
}


share|improve this answer
The class BitmapImage does not have a Save method.. – So Many Goblins Jul 6 '11 at 14:09
Whoops. I saw that. Muad'Dib's answer should work. – bdowden Jul 6 '11 at 14:19

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.