求一段这样的代码 asp 图片等比例缩放

是这样一个问题!比如说我定义的图片大小是120*120.图片是240*300显示出来120*120的结果就是个变形的图片...有没有那种代码啊!让他的宽和高都等比例缩放!... 是这样一个问题! 比如说 我定义的图片大小是120*120.图片是240*300 显示出来120*120的结果就是个变形的图片...有没有那种代码啊!让他的宽和高都等比例缩放!有的教教我啊! 谢谢了! 展开
 我来答
漎椘釼瓎樜契坱
2014-06-18 · TA获得超过215个赞
知道答主
回答量:191
采纳率:80%
帮助的人:66.8万
展开全部
js代码如下 给图片添加 onload 时间 调用JS方法 <script language="JavaScript"> <!-- //图片按比例缩放 var flag=false; function DrawImage(ImgD){ var image=new Image(); var iwidth = 220; //定义允许图片宽度 var iheight = 190; //定义允许图片高度 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; } } } function MM_openBrWindow(theURL,winName,features) { //v2.0 window.open(theURL,winName,features); } //--> </script>
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式