| 编程中国 | 业界新闻 | 技术文章 | 视频教程 | 下载频道 | 程序源码 | 个人空间 | 编程论坛
全能ASP/PHP/ASP.NET主机,支持月付专业 MSSQL 数据库空间,支持月付专业 MySQL 数据库空间,支持月付学习型 ASP/PHP/ASP.NET 主机 30元/年
高端软件开发 = 年薪十万不是梦赛孚耐:软件保护加密专家身份认证令牌USB KEY 
共有 275 人关注过本帖
标题:图片成比例缩放--分享
收藏  订阅  推荐  打印
放任一切
Rank: 3Rank: 3
等级:中级会员
威望:4
帖子:216
积分:2268
注册:2007-3-22
图片成比例缩放--分享

<script>
function DrawImage(ImgD){
var image=new Image();
var iwidth = 120; //定义允许图片宽度
var iheight = 90; //定义允许图片高度
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>




<html><body>
<img src="http://community.csdn.net/ADV/Images/CSDN-11.GIF" name="dd" onload="DrawImage(this);">

</body>
</html>

[此贴子已经被作者于2007-7-9 10:55:57编辑过]

搜索更多相关主题的帖子: image  缩放  ImgD  iwidth  var  
2007-7-9 10:46
放任一切
Rank: 3Rank: 3
等级:中级会员
威望:4
帖子:216
积分:2268
注册:2007-3-22

分享一下
2007-7-9 10:52
yndkai
Rank: 3Rank: 3
等级:中级会员
威望:7
帖子:271
积分:2818
注册:2007-6-1

不行吧 没什么效果啊


本来讨厌下雨的天空 直到听见有人说爱我
2007-7-9 11:51
放任一切
Rank: 3Rank: 3
等级:中级会员
威望:4
帖子:216
积分:2268
注册:2007-3-22

效果自己设置一下,上面大小可以自己设定一下。
你看看原图,上面有地址!

2007-7-9 11:54
关于我们 | 广告合作 | 编程中国 | 清除Cookies | Archiver | WAP | TOP

编程中国 版权所有,并保留所有权利。鲁ICP备08000592号
Powered by Discuz, Processed in 0.084197 second(s), 9 queries.
Copyright©2004-2008, BCCN.NET, All Rights Reserved