自动缩略图

来源:互联网 发布:通用数据库客户端工具 编辑:程序博客网 时间:2024/05/16 01:43

<img src="wy_admin/<%=rs1("pic1")%>" width="220" height="150" border="0" ONLOAD='javascript:DrawImage(this);'>
必须要给初始文件大小

 

 


<script>
var flag=false;
function DrawImage(ImgD){
var image=new Image();
var FitWidth=220;//图片的最大宽,超过这个值就会自动缩小
var FitHeight=150;//按比例缩小
image.src=ImgD.src;
if(image.width>0 && image.height>0){
flag=true;
if(image.width/image.height>= FitWidth/FitHeight){
if(image.width>FitWidth){
ImgD.width=FitWidth;
ImgD.height=(image.height*FitWidth)/image.width;
}else{
ImgD.width=image.width;
ImgD.height=image.height;
}
ImgD.alt="";
}
else{
if(image.height>FitHeight){
ImgD.height=FitHeight;
ImgD.width=(image.width*FitHeight)/image.height;
}else{
ImgD.width=image.width;
ImgD.height=image.height;
}
ImgD.alt="";
}
}
}
</script>