IE6消除图片锯齿

清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<head>
<title>VML</title>
<style type="text/css">
/*v\:* { behavior: url(#default#VML);}*/
.vml{
	behavior: url(#default#VML);
}
img{
	width:343px;
	height:257px;
	display:block;
}
img.thumb{
	-ms-interpolation-mode: bicubic;
}
</style>
</head>

<body>
VML:
<v:image src="http://img.gtuan.com/upload/g/4/d1/69c/20110413145113207_2553.jpg" name="img" id="vmlimg" class="vml" style="width:343px;height:257px;display:block"/>
Old: <img src="http://img.gtuan.com/upload/g/4/d1/69c/20110413145113207_2553.jpg" name="img" /> 
Bicubic: <img src="http://img.gtuan.com/upload/g/4/d1/69c/20110413145113207_2553.jpg" name="img" class="thumb" />
</body>
</html>