vote up 2 vote down star
System.Runtime.InteropServices.ExternalException: A generic error occurred in GDI+. at
System.Drawing.Image.Save(String filename, ImageCodecInfo encoder, EncoderParameters encoderParams) at
System.Drawing.Image.Save(String filename, ImageFormat format) at
System.Drawing.Image.Save(String filename) at
Content.btnAddImage_Click(Object sender, EventArgs e) in
d:\inetpub\vhosts\rhinoreview.com\httpdocs\Content.ascx.cs:line 543

This process works perfect on any browser on a PC but does not work at all on any browser on a mac osx. A little lost on this one....

flag
That's not really enough info to go on. Can you elaborate? – Matthew Schinckel Nov 18 '08 at 4:16
Are you using the same image file when testing the upload on both MAC and PC? The most common cause that I have seen for the "generic error occurred in GDI+" is when you're trying to save a bitmap that has already been disposed.... – Nicholas Piasecki Nov 18 '08 at 5:53
You need to give more information for us to be able to help. My guess would be: From a windows browser you're uploading a valid image: From the mac browser you're uploading a broken image, or one that .NET can't read... – Orion Edwards Nov 25 '08 at 22:18

3 Answers

vote up 0 vote down

Is it possible to show us the code in the user control? Thanks.

link|flag
vote up 1 vote down

Wild guess, but it might be related to file extensions (it seems like GDI+ is failing when trying to convert the uploaded image to something it understands). I don't think Mac OS X needs them; are you uploading an image that doesn't have a file extension?

link|flag
vote up 1 vote down

Nitpicking: it looks more like a download problem (from server to client) than an upload one (client sending a file to server).

Even more nitpicking: for me, PC means just Personal Computer. So computing running Mac OS or Linux or BSD or BeOS are just PC. I guess you mean PCs running Windows.

Wild guess, to add some value to this message: do you send the right headers along with the image?
It is hard to debug from the little info you provide (no code, no indication of language (C# likely) in the tags, etc.).

link|flag

Your Answer

Get an OpenID
or

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