vote up 1 vote down star
1

My page contains an image like in example below. Width of the image depends on browsers width and height is being changed authomaticly (something like ).

This image looks nice after resizing in all browsers except IE (I've tested in IE7 and IE6). In IE image looks ugly. Some parts are thicker than should be and some parts are thinner.

alt text

I'm almost sure that it is due to IE doesn't use smoothing. But I wonder how to solve this unpleasent problem?


I dont have ie7 but this code should work fine there. But how to fix it for ie6?

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
  <style type="text/css">
    img { -ms-interpolation-mode:bicubic; }
  </style>
</head>
<body>
  <div style="width: 50%;">
    <img src="pp.jpg" width="100%">
  </div>
</body>
</html>

From flickr devs:

IE 6 is a riskier proposition, but can show improved image resizing when the AlphaImageLoader CSS filter is applied, the same filter commonly used for properly displaying PNGs with alpha transparency. For example, filter:progid:DXImageTransform.Microsoft.AlphaImageLoader (src='/path/to/image.jpg', sizingMethod='scale');. While there is no transparency to apply here, the resizing method applied gives a higher-quality result.

I cant make it work yet, actually I haven't ever used filters. Maybe anyone can give me working code?

flag

45% accept rate
Relying on the browser to scale images will never give you consistent results. – Nik May 16 at 13:28

3 Answers

vote up 1 vote down check

Unstoppable Robot Ninja has an article with more information and some code to make it work on IE6 and IE7.

The problem is not IE specific, but platform specific. Firefox, Safari etc. all use their own rendering engine that scales much smoother than native Windows scaling does.

I'd advise to add the CSS declarations or JavaScript code in Conditional Comments, so non IE browsers don't have to download the extra code or issue another request. This also keeps your CSS clean and valid.

link|flag
This is it! Thanks! – Roman May 16 at 16:18
vote up -1 vote down

For IE6, Microsoft itself has a Knowledge Base article

link|flag
something like 404 ("Could not locate remote server") – Roman May 16 at 15:35
Check your proxy settings and what not else. The link works perfectly! – Vilx- May 16 at 17:16
vote up 3 vote down

Joel Spolsky posted a solution to this on this blog recently: http://www.joelonsoftware.com/items/2008/12/22.html

Add to following to the CSS:

img { -ms-interpolation-mode:bicubic; }

The best solution is to use images that do not need to be scaled by the browser, but the CSS Joel suggests to a great improvement.

link|flag
hm.. I tried and it doesn't work :( can anyone give me working example? – Roman May 16 at 13:38
I don't have an IE6 handy to try it with, but I saw Joel's article at the time he published it, tested it and found it worked for me. – RichieHindle May 16 at 13:56
@RichieHindle: I've just real original article (Joel gave a reference) and it was sad that I should use some filters for ie6 because without filters it works in ie7+) – Roman May 16 at 14:05
Definitely use it as a IE hack by adding some condicional :) – ozke May 16 at 15:14

Your Answer

Get an OpenID
or

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