图片按比例缩放的js实现代码

发布时间:2020-10-23编辑:脚本学堂
js代码实现的将图片按比例缩放的代码,有需要的朋友,可以参考下。

有时页面中的图片尺寸较大,有损页面美观,带来不好的用户体验,此时需要裁剪或按比例缩放,您不妨参考下本文介绍的这段代码。
 

复制代码 代码示例:
<script language="javascript">
<!--
//图片按比例缩放
//by http://www.jb200.com
//date 2013/3/23
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>

调用示例:
 

复制代码 代码示例:
<img src="img/jb200.com.gif" onload="javascript:DrawImage(this,100,100)">