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
Post a Comment