Tag Archives: ie7

IE7 supports a custom bicubic resampling mode for images. Before, resizing a 500×500 image like this:

This image is really 500x500 big

would produce a horrible result in IE, with noticeably lower quality in the resized version.

This is easily fixed in IE7 by applying the following property to the img tag:

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

Go to this demo page for a Flickr picture example.