图片等比例缩略图js

有关图片缩略图变形的问题,成比例缩放方法!

//名称:Drawlmage
//功能:完成图形的成比例缩放
//日期:2010-3-20

//人员:RedWolf
//调用的方法:<img src="你的图片地址" onload='javascript:DrawImage(this,最大宽度,最大高度);'>

<script language="javascript">
var flag=false;
function DrawImage(ImgD,iwidth,iheight){
var image=new Image();
image.src=ImgD.src;
if(image.width>0 && image.height>0){
flag=true;
if(image.width/image.height>= iwidth/iheight){
if(image.width>iwidth){
ImgD.width=iwidth;
ImgD.height=(image.height*iwidth)/image.width;
}else{
ImgD.width=image.width;
ImgD.height=image.height;
}
ImgD.alt=image.width+"×"+image.height;
}
else{
if(image.height>iheight){
ImgD.height=iheight;
ImgD.width=(image.width*iheight)/image.height;
}else{
ImgD.width=image.width;
ImgD.height=image.height;
}
ImgD.alt=image.width+"×"+image.height;
}
}
}

</script>

 

你可能感兴趣的:(JavaScript,image,图形,2010)