js等比控制图片大小的代码(在指定的范围内)

发布时间:2019-12-27编辑:脚本学堂
为大家提供一段js代码,可以用来等比例控制图片的大小,记住是在指定的范围内控制大小哦。有需要的朋友,可以参考下。

1、html代码
 

复制代码 代码示例:
<img src="123.jpg" onload="DrawImage(this,200,200)"/>

2、js脚本
 

复制代码 代码示例:
<script language='javascript'>
/**
 * 等比例控制图片大小
 * 整理 http://www.jb200.com
*/
function DrawImage(ImgD,FitWidth,FitHeight)
{
   var image=new Image();
   image.src=ImgD.src;
   if(image.width>0 && image.height>0)
   {
     if(image.width/image.height>= FitWidth/FitHeight)
     {
       if(image.width>FitWidth)
       {
         ImgD.width=FitWidth;
         ImgD.height=(image.height*FitWidth)/image.width;
       }
       else
       {
         ImgD.width=image.width;
         ImgD.height=image.height;
       }
     }
     else
     {
       if(image.height>FitHeight)
       {
         ImgD.height=FitHeight;
         ImgD.width=(image.width*FitHeight)/image.height;
       }
       else
       {
          ImgD.width=image.width;
          ImgD.height=image.height;
       }
     }
   }
}
</script>