Showing posts with label Microsoft Internet Explorer. Show all posts
Showing posts with label Microsoft Internet Explorer. Show all posts
Monday, 10 June 2013
Sunday, 16 December 2012
image/pjpeg vs. image/jpg MIME types
If you got into this nasty issue that IE uploads your jpeg images as pjpeg (progressive jpeg).
My solution was just to ignore it when displaying it, since for instance I was displaying it on an rdlc report which does not support pjpeg
SELECT
CASE WHEN U.SignatureContentType = 'image/pjpeg'
THEN 'image/jpeg' ELSE U.SignatureContentType END SignatureContentType,
U.SignatureFileContent,..........
Another screaming developer from this issue ;)
http://www.zigpress.com/2010/01/14/non-standard-imagepjpeg-mimetype-on-ie
My solution was just to ignore it when displaying it, since for instance I was displaying it on an rdlc report which does not support pjpeg
SELECT
CASE WHEN U.SignatureContentType = 'image/pjpeg'
THEN 'image/jpeg' ELSE U.SignatureContentType END SignatureContentType,
U.SignatureFileContent,..........
Another screaming developer from this issue ;)
http://www.zigpress.com/2010/01/14/non-standard-imagepjpeg-mimetype-on-ie
Subscribe to:
Posts (Atom)