JS创建缩略图

<script  language="javascript"> 
//显示缩略图
function DrawImage(ImgD,width_s,height_s){
 /*var width_s=139;
 var height_s=104;
 */
 var image=new Image();
 image.src=ImgD.src;
 if(image.width>0 && image.height>0){
 flag=true;
 if(image.width/image.height>=width_s/height_s){
 if(image.width>width_s){
 ImgD.width=width_s;
 ImgD.height=(image.height*width_s)/image.width;
 }else{
 ImgD.width=image.width;
 ImgD.height=image.height;
 }
 }
 else{
 if(image.height>height_s){
 ImgD.height=height_s;
 ImgD.width=(image.width*height_s)/image.height;
 }else{
 ImgD.width=image.width;
 ImgD.height=image.height;
 }
 }
 }
 /*else{
 ImgD.src="";
 ImgD.
 }*/
 }
 </script>


调用
<div><img src="图片" align="center" onload="DrawImage(this,200,200)"></div>

 

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。