成比例缩放图片

来源:互联网 发布:金蝶软件待遇怎么样 编辑:程序博客网 时间:2024/04/20 07:12

JavaScript代码:
<script language="JavaScript">
<!--
var flag=false;
function DrawImage(ImgD){
   var image=new Image();
   image.src=ImgD.src;
   if(image.width>0 && image.height>0){
    flag=true;
    if(image.width/image.height>= 140/125){
     if(image.width>140){ 
     ImgD.width=140;
     ImgD.height=(image.height*140)/image.width;
     }else{
     ImgD.width=image.width; 
     ImgD.height=image.height;
     }
     ImgD.alt=image.width+"×"+image.height;
     }
    else{
     if(image.height>125){ 
     ImgD.height=125;
     ImgD.width=(image.width*125)/image.height;    
     }else{
     ImgD.width=image.width; 
     ImgD.height=image.height;
     }
     ImgD.alt=image.width+"×"+image.height;
     }
    }
}
//-->
</script>

图片引用:
<a target="_blank" href="images/<%=rsmallimg%>">
<img src="images/<%=rsmallimg%>" onload="javascript:DrawImage(this);" alt="<%=rname%>" width="140" height="125" border="0" style="border: 1px solid #000000"></a><BR>
&nbsp; (点击看原图 )

原创粉丝点击