html5 - why are some images not display in IE8? -


in website bannner images not displayed in ie8 , red cross appeared in place of image, works in mozilla , chrome. googled , tried suggestion not working.

ie8 won't show jpegs cmyk. make sure change them rgb using image editor.

if have imagemagick installed (if not, it!) can use:

identify -verbose yourimage.jpg 

to find out file.

again, using imagemagick can run:

convert cmyk_image.jpg -colorspace rgb rgb_image.jpg 

to convert rgb – warned, colours might different don't assume ok without checking.

if want file overwrite original use:

mogrify -colorspace rgb cmyk_image.jpg  

Comments

Popular posts from this blog

Delphi XE2 Indy10 udp client-server interchange using SendBuffer-ReceiveBuffer -

Qt ActiveX WMI QAxBase::dynamicCallHelper: ItemIndex(int): No such property in -

Enable autocomplete or intellisense in Atom editor for PHP -