JAVSCRIPTなどのスケール画像は最大幅と最大高さを限定しています.

1363 ワード

Web上で画像を表示する場合、通常は画像表示の割合に問題があります.もしwidthとheightを制限しないと、画像が大きくなるとページ全体が乱れ、画像が小さくなると画像が歪みます.
  
        1、画像表示の標準幅と高さを予め定義しておく.        2、画像の大きさが標準の定義を超えている場合、等の割合で画像を圧縮する.        3、画像のサイズが標準の定義に等しい場合、標準の幅と高さに従って画像を表示します.        4、ピクチャのサイズが標準の定義より小さい場合、画像に対して任意の圧縮処理を行わない.
 
<script language="JavaScript">

//       

var flag=false;

function DrawImage(ImgD,iwidth,iheight){

    //  (  ,     ,     )

    var image=new Image();

    image.src=ImgD.src;

    if(image.width>0 && image.height>0){

    flag=true;

    if(image.width/image.height>= iwidth/iheight){

        if(image.width>iwidth){  

        ImgD.width=iwidth;

        ImgD.height=(image.height*iwidth)/image.width;

        }else{

        ImgD.width=image.width;  

        ImgD.height=image.height;

        }

        ImgD.alt=image.width+"×"+image.height;

        }

    else{

        if(image.height>iheight){  

        ImgD.height=iheight;

        ImgD.width=(image.width*iheight)/image.height;        

        }else{

        ImgD.width=image.width;  

        ImgD.height=image.height;

        }

        ImgD.alt=image.width+"×"+image.height;

        }

    }

} 

</script>

  :

<img src="images/toplogo.gif" onload="javascript:DrawImage(this,100,100)">