<script language="JavaScript">
<!--
//图片按比例缩放
var flag=false;
function DrawImage(ImgD,iwidth,iheight){
//参数(图片,允许的宽度,允许的高度)
var p_w_picpath=new Image();
p_w_picpath.src=ImgD.src;
if(p_w_picpath.width>0 && p_w_picpath.height>0){
flag=true;
if(p_w_picpath.width/p_w_picpath.height>= iwidth/iheight){
if(p_w_picpath.width>iwidth){
ImgD.width=iwidth;
ImgD.height=(p_w_picpath.height*iwidth)/p_w_picpath.width;
}else{
ImgD.width=p_w_picpath.width;
ImgD.height=p_w_picpath.height;
}
ImgD.alt=p_w_picpath.width+"×"+p_w_picpath.height;
}
else{
if(p_w_picpath.height>iheight){
ImgD.height=iheight;
ImgD.width=(p_w_picpath.width*iheight)/p_w_picpath.height;
}else{
ImgD.width=p_w_picpath.width;
ImgD.height=p_w_picpath.height;
}
ImgD.alt=p_w_picpath.width+"×"+p_w_picpath.height;
}
}
}
//-->
</script>
 
 
 
调用:onload="javascript:DrawImage(this,150,110)"