| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 667 人关注过本帖
标题:图片成比例缩放--分享
只看楼主 加入收藏
放任一切
Rank: 2
等 级:新手上路
威 望:4
帖 子:217
专家分:0
注 册:2007-3-22
收藏
 问题点数:0 回复次数:3 
图片成比例缩放--分享
<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-07-09 10:46
放任一切
Rank: 2
等 级:新手上路
威 望:4
帖 子:217
专家分:0
注 册:2007-3-22
收藏
得分:0 
分享一下
2007-07-09 10:52
yndkai
Rank: 3Rank: 3
等 级:新手上路
威 望:7
帖 子:275
专家分:0
注 册:2007-6-1
收藏
得分:0 

不行吧 没什么效果啊


本来讨厌下雨的天空 直到听见有人说爱我
2007-07-09 11:51
放任一切
Rank: 2
等 级:新手上路
威 望:4
帖 子:217
专家分:0
注 册:2007-3-22
收藏
得分:0 

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

2007-07-09 11:54
快速回复:图片成比例缩放--分享
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.019888 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved