博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

自动缩略图收藏

Posted on 2009-03-16 16:43  ^_^木头人  阅读(93)  评论(0)    收藏  举报

<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>