JS按照比例缩小图片

时间:2014-11-11 07:15:36
【文件属性】:
文件名称:JS按照比例缩小图片
文件大小:113KB
文件格式:ZIP
更新时间:2014-11-11 07:15:36
JS按照比例缩小图片,等比例缩小图片 图片缩小时,按照原始图片的比例缩小,不至于缩小导致图片变形! function imgage(ImgD){ var image=new Image(); var iwidth = 400; //定义允许图片宽度 var iheight =450; //定义允许图片高度 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{ 。。。。。。
【文件预览】:
1.jpg
index.html
sx.js

网友评论