JS等比例缩放图片,限定最大宽度和最大高度
Posted 夜里码码
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS等比例缩放图片,限定最大宽度和最大高度相关的知识,希望对你有一定的参考价值。
//图片按比例缩放
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;
}
}
}
<img src="images/toplogo.gif" onload="javascript:DrawImage(this,100,100)">
以上是关于JS等比例缩放图片,限定最大宽度和最大高度的主要内容,如果未能解决你的问题,请参考以下文章