当前位置: 首页 > 图文教程 > 网络编程 > Javascript > 图片按比例缩放函数

Javascript
javascript 短路法代码精简
JavaScript 字符串乘法
JQUERY 浏览器判断实现函数
精通Javascript+jQuery 视频教程 在线观看
用Javascript数组处理多个字符串的连接问题
javascript 数组排序函数
IE下通过JS控制剪贴板的代码
JS获取父节点方法
IE 下的只读 innerHTML
javascript 自定义常用方法
javascript 自定义事件初探
javascript arguments 传递给函数的隐含参数
javascript 面向对象编程基础:封装
javascript 面向对象编程基础:继承
javascript 面向对象编程基础 多态
自己的js工具_Form 封装
自己的js工具 Cookie 封装
自己的js工具 Event封装
获取HTML DOM节点元素的方法的总结
ext checkboxgroup 回填数据解决

Javascript 中的 图片按比例缩放函数


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-10-12   浏览: 195 ::
收藏到网摘: n/a

以下是程序代码:
<script language="JavaScript">
<!--
//图片按比例缩放
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="images/toplogo.gif" onload="javascript:DrawImage(this,100,100)">