I'm using the WebImage in MVC3 in order to resize an image. Basically, the purpose of this is to create a thumbnail image of a file that is uploaded. I will have no control over how large the files are originally, so I need to create a thumbnail of the file in order to speed up the "preview" site.

I have some files which need to be uploaded and in size, its around 4Mb which isn't a problem when it comes to uploading. The problem I'm having is creating the thumbnail. I upload the file first and once its saved on the server, I then create a new WebImage object for the thumbnail.

// Save a thumbnail of the file
WebImage image = new WebImage(savedFileName);

// Resize the image
image.Resize(135, 150, true);

// Save the thumbnail
image.Save(FileName);   // <<--- Out of memory exception here

// Dispose of the image
image = null;

When I try to save the file, I get an Out-of-memory exception. Any ideas on how I can resolve this?

link|improve this question

What is the image size (width x height)? – Aliostad Mar 11 '11 at 10:18
The original image is 4000x4724px. – Neil Knight Mar 11 '11 at 10:20
Can you please provide a spec of the machine? If it is 24bit image then it takes around 120 MB of memory. – Aliostad Mar 11 '11 at 10:23
3.04Ghz Intel Processor 64bit, 6Gb RAM. – Neil Knight Mar 11 '11 at 10:24
I just looked at the image properties and it is a 32bit JPG image. – Neil Knight Mar 11 '11 at 10:26
show 2 more comments
feedback

2 Answers

OK, this looks like a bug in MVC3. The error you are getting is just a standard GDI+ error when GDI+ tries to access pixels in locations where it does not exist.

I believe issue is in the rounding of the pixels when it calculates aspect ratio so I think if you change 135, 150 to for example 136, 151 it will work.

I might have a look later myself to find the bug in their code and post to them.


UPDATE - Possible Workaround

Try passing true for the 4th parameter:

// Resize the image
image.Resize(135, 150, true, true);

I can actually see the bug in code:

    if (num3 > num4)
    {
        height = (int) Math.Round((double) ((num4 * image.Height) / 100.0));
    }
    else if (num3 < num4)
    {
        width = (int) Math.Round((double) ((num3 * image.Width) / 100.0));
    }
link|improve this answer
No, this still causes an issue. I also tried to use Crop and take the centre of the picture knowing that these pixels are available, and it caused an out-of-memory exception on that too. – Neil Knight Mar 11 '11 at 11:00
Try my update please. – Aliostad Mar 11 '11 at 11:01
OK, i willl have a look at lunchtime. – Aliostad Mar 11 '11 at 11:05
Just can you give me stacktrace please and possibly the image which causes the problem if not confidential – Aliostad Mar 11 '11 at 11:31
It seems the problem is when the file CMYK rather than RGB. – Neil Knight Mar 11 '11 at 12:08
feedback
up vote 0 down vote accepted

Due to a bug in WebImage, I've had to resort to the code below:

// Save a thumbnail of the file
byte[] fileBytes = System.IO.File.ReadAllBytes(savedFileName);

System.Drawing.Image i;
using (MemoryStream ms = new MemoryStream())
{
    ms.Write(fileBytes, 0, fileBytes.Length);
    i = System.Drawing.Image.FromStream(ms);
}

// Create the thumbnail
System.Drawing.Image thumbnail = i.GetThumbnailImage(135, 150, () => false, IntPtr.Zero);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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