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
No comments:
Post a Comment