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 an image uploader and cropper which creates thumbnails and I occasionally get an Out Of Memory exception on the following line:

Dim bm As Bitmap = System.Drawing.Image.FromFile(imageFile)

The occurance of the error is tiny and very rare, but I always like to know what might be causing it. The imageFile variable is just a Server.MapPath to the path of the image.

I was curious if anyone had experience this issue previously and if they had any ideas what might be causing it? Is it the size of the image perhaps?

I can post the code if necessary and any supporting information I have, but would love to hear people's opinions on this one.

share|improve this question
Is the image you're trying to load exceptionally large? – RCIX Jul 10 '09 at 9:28
All images are less than ~700kb. – dooburt Jul 10 '09 at 9:55
2  
Are you sure the file in question is a valid image file? I have also run into exactly the same situation, but the the file hasn't been able to load in any other program either. – Dan Byström Jul 10 '09 at 9:57
Note: with valid image file I didn't refer to the file type but the content. That is: could the image data be damaged? – Dan Byström Jul 10 '09 at 9:58
1  
I danby, thanks for the response. It isn't my image, so I'm having it sent over and will get it checked. The person uploading is particularly incompetent so I'm hoping it is just that! – dooburt Jul 10 '09 at 10:47
show 1 more comment

5 Answers

up vote 10 down vote accepted

It's worth knowing that OutOfMemoryException doesn't always really mean it's out of memory - particularly not when dealing with files. I believe it can also happen if you run out of handles for some reason.

Are you disposing of all your bitmaps after you're done with them? Does this happen repeatably for a single image?

share|improve this answer
Hi Jon, thanks for the quick reply. Yes, I dispose of both the image and the graphics. Dim bmPhoto As New Bitmap(targetW, targetH, PixelFormat.Format24bppRgb) Dim grPhoto As Graphics = Graphics.FromImage(bmPhoto) bmPhoto.Dispose() bmPhoto = Nothing grPhoto.Dispose() grPhoto = Nothing As for the repeatability, no it is exceedingly random - but the images always tend to be larger (though no bigger than 700k~). – dooburt Jul 10 '09 at 9:55
2  
I suspect that it may not be file size, but in-memory image size - a very heavily compressed image with a massive number of pixels might cause you issues... – Jon Skeet Jul 10 '09 at 9:56
1  
Hi Jon, thanks for the comment. Turns out to be a damaged image all along. sigh. An incompetent user. Thanks for your answers though :) – dooburt Jul 10 '09 at 11:10
4  
How did you determine that the image was corrupted? I'm also having these OutOfMemoryException errors when doing Image.FromFile. What's peculiar is that it only throws the exception on one server, and not another. Could I be missing some essential encoder? This is a 4256x2832 24bpp sRGB JPEG downloaded from Getty images. – Mark Richman Jun 21 '10 at 15:27

If this wasn't a bad image file but was in fact the normal issue with Image.FromFile wherein it leaves file handles open, then the solution is use Image.FromStream instead.

using (FileStream fs = new FileStream(filePath, FileMode.Open, FileAccess.Read))
{
   using (Image original = Image.FromStream(fs))
   {
      ...

Using an explicit Dispose(), a using() statement or setting the value to null on the bitmap doesn't solve the issue with Image.FromFile.

So if you App runs for a time and opens a lot of files consider using Image.FromStream() instead.

share|improve this answer
Actually, if you dispose of a stream that is bound to a file through an unmanaged handle, the handle will be closed there and then, no waiting for GC to occur at all. After all, that's the whole point of IDisposable to begin with. – Lasse V. Karlsen Mar 29 '11 at 19:44
This can be taken a step further too. blogs.msdn.com/b/omars/archive/2004/03/29/100941.aspx, still seems to apply. – user82646 Mar 30 '11 at 18:11
what about pdf with alpha in this case? – Berker Yüceer Jun 12 '12 at 8:26

I hit the same issue today while creating Thumbnail images for a folder full of images. It turns out that the "Out Of Memory" occured exactly at the same point each time. When I looked at the folder with the images to be converted I found that the file that was creating the problem was thumbs.db. I added some code to make sure that only image files were being converted and the issue was resolved.

My code is basically

For Each imageFile as FileInfo in fileList
If imageFile.Extension = ".jpg" Or imageFile.Extension = ".gif" Then
    ...proceed with the conversion
End If
Next

Hope this helps.

share|improve this answer

I had a similar problem today when I was trying to resize an image and then crop it, what happened is I used this code to resize the image.

private static Image resizeImage(Image imgToResize, Size size)
{
   int sourceWidth = imgToResize.Width;
   int sourceHeight = imgToResize.Height;

   float nPercent = 0;
   float nPercentW = 0;
   float nPercentH = 0;

   nPercentW = ((float)size.Width / (float)sourceWidth);
   nPercentH = ((float)size.Height / (float)sourceHeight);

   if (nPercentH < nPercentW)
      nPercent = nPercentH;
   else
      nPercent = nPercentW;

   int destWidth = (int)(sourceWidth * nPercent);
   int destHeight = (int)(sourceHeight * nPercent);

   Bitmap b = new Bitmap(destWidth, destHeight);
   Graphics g = Graphics.FromImage((Image)b);
   g.InterpolationMode = InterpolationMode.HighQualityBicubic;

   g.DrawImage(imgToResize, 0, 0, destWidth, destHeight);
   g.Dispose();

   return (Image)b;
}

And then this code for the crop...

private static Image cropImage(Image img, Rectangle cropArea)
{
   Bitmap bmpImage = new Bitmap(img);
   Bitmap bmpCrop = bmpImage.Clone(cropArea,
   bmpImage.PixelFormat);
   return (Image)(bmpCrop);
}

Then this is how I called the above code...

Image img = Image.FromFile(@"C:\Users\****\Pictures\image.jpg");
img = ImageHandler.ResizeImage(img, new Size(400, 300));
img = ImageHandler.CropImage(img, new Rectangle(0, 25, 400, 250));
long quality = 90;

I kept getting errors on the crop part, the resizer worked fine!

Turns out, what was happening inside the resizer was throwing errors in the crop function. The resized calculations were making the actual dimensions of the image come out to be like 399 rather than 400 that I passed in.

So, when I passed in 400 as the argument for the crop, it was trying to crop a 399px wide image with a 400px width bmp and it threw the out of memory error!

Most of the above code was found on http://www.switchonthecode.com/tutorials/csharp-tutorial-image-editing-saving-cropping-and-resizing

share|improve this answer

Also you can open it in read mode, (if you want to use it in two place same time)

 public Image OpenImage(string previewFile)
        {
            FileStream fs = new FileStream(previewFile, FileMode.Open, FileAccess.Read, FileShare.ReadWrite);
            return Image.FromStream(fs);
        }
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.