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

About one percent of our users experience sudden crash while using our application. The logs show below exception, the only thing in common that I've seen so far is that, they all have XP SP3.

Thanks in advance

Out of memory.

   at System.Drawing.Graphics.CheckErrorStatus(Int32 status)
   at System.Drawing.Graphics.DrawImage(Image image, Rectangle destRect, Int32 srcX, Int32 srcY, Int32 srcWidth, Int32 srcHeight, GraphicsUnit srcUnit, ImageAttributes imageAttrs, DrawImageAbort callback, IntPtr callbackData)
   at System.Drawing.Graphics.DrawImage(Image image, Rectangle destRect, Int32 srcX, Int32 srcY, Int32 srcWidth, Int32 srcHeight, GraphicsUnit srcUnit, ImageAttributes imageAttr, DrawImageAbort callback)
   at System.Drawing.Graphics.DrawImage(Image image, Rectangle destRect, Int32 srcX, Int32 srcY, Int32 srcWidth, Int32 srcHeight, GraphicsUnit srcUnit, ImageAttributes imageAttr)
   at System.Windows.Forms.ControlPaint.DrawBackgroundImage(Graphics g, Image backgroundImage, Color backColor, ImageLayout backgroundImageLayout, Rectangle bounds, Rectangle clipRect, Point scrollOffset, RightToLeft rightToLeft)
   at System.Windows.Forms.Control.PaintBackground(PaintEventArgs e, Rectangle rectangle, Color backColor, Point scrollOffset)
   at System.Windows.Forms.Control.PaintBackground(PaintEventArgs e, Rectangle rectangle)
   at System.Windows.Forms.Control.OnPaintBackground(PaintEventArgs pevent)
   at System.Windows.Forms.ScrollableControl.OnPaintBackground(PaintEventArgs e)
   at System.Windows.Forms.Control.PaintTransparentBackground(PaintEventArgs e, Rectangle rectangle, Region transparentRegion)
   at System.Windows.Forms.Control.PaintBackground(PaintEventArgs e, Rectangle rectangle, Color backColor, Point scrollOffset)
   at System.Windows.Forms.Control.PaintBackground(PaintEventArgs e, Rectangle rectangle)
   at System.Windows.Forms.Control.OnPaintBackground(PaintEventArgs pevent)
   at System.Windows.Forms.ScrollableControl.OnPaintBackground(PaintEventArgs e)
   at System.Windows.Forms.Control.PaintTransparentBackground(PaintEventArgs e, Rectangle rectangle, Region transparentRegion)
   at System.Windows.Forms.Control.PaintBackground(PaintEventArgs e, Rectangle rectangle, Color backColor, Point scrollOffset)
   at System.Windows.Forms.Control.PaintBackground(PaintEventArgs e, Rectangle rectangle)
   at System.Windows.Forms.Control.OnPaintBackground(PaintEventArgs pevent)
   at System.Windows.Forms.Control.PaintWithErrorHandling(PaintEventArgs e, Int16 layer, Boolean disposeEventArgs)
   at System.Windows.Forms.Control.WmPaint(Message& m)
   at System.Windows.Forms.Control.WndProc(Message& m)
   at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
   at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
   at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)

Operation System Information
----------------------------
Name = Windows XP
Edition = Home
Service Pack = Service Pack 3
Version = 5.1.2600.196608
Bits = 32
share|improve this question
1  
Is it a very large image being drawn that would legitimately cause an out-of-memory exception? – Jacob Mar 13 '11 at 8:05
@Jacob - hmm, we have one place where we take a screenshot of users desktop and display it to him. Now lets say he has 1920x1080x32 bit resolution it means that 8mb of memory is needed, right ? Is 8 mb too much to expect ? – Jack Juiceson Mar 13 '11 at 9:33
That depends on how much memory has already been taken before this 8-MB. – Lex Li Mar 13 '11 at 10:02
@Lex Li - we don't have any significant memory allocation besides that particular scenario. – Jack Juiceson Mar 13 '11 at 10:32
Some actual source code could help see what is going on. – Joel Gauvreau Mar 13 '11 at 13:45
show 6 more comments

2 Answers

I'm sure you've figured this out by now, but in case you haven't we hit the same issue. It's a bug in GDI+ and this works as a workaround. Unfortunately I don't know why but with these sorts of issues I tend to care more that it's fixed and less why it's fixed. ;)

image = image.GetThumbnailImage(image.Width, image.Height, null, IntPtr.Zero);

Apparently that call adjusts the PixelFormat and puts the image in a format that the imagelist's usage of DrawImage can handle.

From: http://siderite.blogspot.com/2009/09/outofmemoryexception-in.html

share|improve this answer
actually I was unable to solve it, as it was happening once a month.. But I will definitely try this out, and mark it as solution if it won't happen again. Thank you – Jack Juiceson Jul 19 '11 at 16:39
This worked for my instance of the same problem, thanks! – Septih Jul 25 '11 at 8:08
GetThumbnailImage uses the embedded exif data (or if it's missing bilinear scaling) Pretty low image quality. We need a better solution. – Computer Linguist Aug 22 '12 at 20:25

You didn't really describe what you're program does, so here's some tips:

  1. Obviously you will run into this if something else is already eating up a lot of RAM. This is even more likely if the user has little RAM to begin with. There's really nothing you can do but warn users to close other programs or, if it is your program that's using this memory, stop doing whatever it is it's doing.
  2. If you're dealing with a lot of large images, you may need to cache these images and load them from file only when necessary. I ran into this problem when trying to store 500x500 images in a collection of about 3000 classes (oops). Just add a property that saves the image to file (probably in your AppData) when set and loads this file when requested (get).
  3. If you're performing a series of image alterations, it's possible that the program is storing each step into memory, and passing along a copy to the next step. I'm not sure how you'd solve this. Try storing each step in a separate variable and, if possible (depending on whatever data type you're using), dispose of the variable after it's been used.

Hopefully something here helps you. If not, please post some source code and/or describe what you're doing in a little more detail.

- Grant

share|improve this answer
source code was already posted. Check comment below the question – Jack Juiceson Mar 14 '11 at 1:48

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.