vote up 0 vote down star

Hello.

I have this code:

if (archivoBinario != null)
{
    MemoryStream ms = new MemoryStream(archivoBinario);
    Bitmap imagen = new Bitmap(ms);
    PicBoxImagen.Image = imagen;
}

It throws a System.OutOfMemoryException when a create a new Bitmap from MemoryStream ms.

Note: archivoBinario is a byte array witch its size is 9778 bytes.

I think the size on memory it's not the problem. Any advice?

The images are sent to the device by a WCF service and stored in a SQL Server CE 3.1 database. Maybe it can occur a problem while sending image.

I have compare the bytes representing the image stored in SQL Server 2005 and the image stored in SQL Server CE and are the same.

Thank you!

flag

3 Answers

vote up 1 vote down check

The Image class throws OOM for just about anything, including invalid format. To check your bases, Make sure it is a valid Image. Save those 9778 bytes to a file and try to view it (on CF and/or a normal PC).

But it is possible for a 9 kB compressed image to blow up enormously so it still could be a genuine OOM.

link|flag
vote up 0 vote down

You must call Dispose on PicBoxImagen.Image if it is not null before assigning a new image. If you don't you have a leak. See this blog entry for a more detailed explanation as to why..

link|flag
I've added more details to my question. – VansFannel Nov 1 at 19:19
vote up 0 vote down

Creating an image will sometimes throw an OutOfMemoryException for resources other than memory (confusingly enough).

Is it possible that you haven't been disposing of Windows Forms handles?

The other possibility is that you really are short on memory - for example, a small file could still represent an enormous picture (e.g. if it's all one colour). If Windows is trying to create an in-memory pixel-by-pixel representation of the image, that could display the same symptoms. What size is the picture in terms of pixels?

link|flag
I've added more details to my question. – VansFannel Nov 1 at 19:20
You still haven't said how big the image is in terms of pixels instead of bytes. You should also check (e.g. with MD5) that you're correctly grabbing it from the database. – Jon Skeet Nov 1 at 19:45
I've saved the image and Ican't open it. – VansFannel Nov 2 at 15:31

Your Answer

Get an OpenID
or

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