|

- UID
- 3190
- 帖子
- 9
- 精华
- 0
- 积分
- 64
- 威望值
- 18 点
- 懒人币
- 100 枚
- 贡献值
- 5 点
- 人气值
- 4 ℃
- 注册时间
- 2008-4-11
|
1#
发表于 2008-11-12 10:22
| 只看该作者
等比缩放图片
<script language="javascript">
<!--
var flag=false;
function DrawImage(ImgD,pw,ph){
var image=new Image();
var pw1=pw
var ph1=ph
image.src=ImgD.src;
if(image.width>0 && image.height>0){
flag=true;
if(image.width/image.height>= pw1/ph1){
if(image.width>pw1){
ImgD.width=pw1;
ImgD.height=(image.height*pw1)/image.width;
}else{
ImgD.width=image.width;
ImgD.height=image.height;
}
ImgD.alt=image.width+"x"+image.height;
}
else{
if(image.height>ph1){
ImgD.height=ph1;
ImgD.width=(image.width*ph1)/image.height;
}else{
ImgD.width=image.width;
ImgD.height=image.height;
}
ImgD.alt=image.width+"x"+image.height;
}
}
}
//-->
</script> |
|