When uploading a file (jpeg) via a form in IE7 I am seeing a mime-type of "image/pjpeg" instead of "image/jpeg" (as I see in Firefox or similar). It's easy enough to work around this problem, but I'm just wondering why IE7 is behaving differently in this case?

link|improve this question
feedback

4 Answers

up vote 17 down vote accepted

I believe it's because the JPEG you're working with is a progressive JPEG, which has a different mime-type.

link|improve this answer
Are there several mime types which would be correct? – Liam Sep 22 '08 at 16:03
1  
I think it's just image/jpeg and image/pjpeg (for JPEGs). I'm not even sure if using a mime of "image/pjpeg" is even standard, but when has that stopped anyone? :) – Pseudo Masochist Sep 22 '08 at 16:11
Is there any reason why IE7 makes this distinction though - whereas FF etc doesn't? – John Montgomery Sep 22 '08 at 16:13
6  
Apparently the IE team thought it was different enough to call out with a separate mime type. But they were probably wrong in doing so: groups.google.com/group/comp.infosystems.www.authoring.images/… – Pseudo Masochist Sep 22 '08 at 16:25
1  
Ah, so it's because (historically) image/jpeg as a mime-type was around before progressive JPEGs themselves, so not all browsers that said they could accept image/jpeg could deal with progressive JPEGs. – John Montgomery Sep 22 '08 at 17:14
show 1 more comment
feedback

IE can upload all .jpeg files as its hack MIME type 'image/pjpeg' regardless of whether or not they're actually progressive.

Don't rely on the MIME type supplied in a file upload, there is every chance it could be wrong for a variety of reasons including this one.

link|improve this answer
Another stackoverflow.com question/answer concerning the same: stackoverflow.com/questions/200912/… – Jacco Nov 4 '09 at 11:19
Thanks this was causing me a headache – edosoft Nov 15 '10 at 11:05
feedback

Because M$ likes to violate standards. There's no such MIME type as image/pjpeg. See for yourself: http://www.iana.org/assignments/media-types/image/

The correct MIME type for JPEG is image/jpeg, progressive or not.

link|improve this answer
feedback

There is same problem with png:

IE7: image/x-png Normal browsers: image/png

;)

link|improve this answer
1  
That's slightly different: the x- prefix is standardised as a namespace for unregistered MIME types, so this isn't violating the standard. But still, it ought to use image/png. – Stewart Jun 1 '09 at 16:29
feedback

Your Answer

 
or
required, but never shown

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