當前位置:
首頁 >
前端技术
> javascript
>内容正文
javascript
JavaScript,等比例缩放图片的函数,很好用。
生活随笔
收集整理的這篇文章主要介紹了
JavaScript,等比例缩放图片的函数,很好用。
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
在Web上顯示圖片,通常都會有圖片顯示比例問題,如果不給<img />限制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)">
????我的需求如下:
????????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)">
轉載于:https://www.cnblogs.com/kingeric/archive/2007/01/01/609476.html
總結
以上是生活随笔為你收集整理的JavaScript,等比例缩放图片的函数,很好用。的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: junit单元测试,反射,注解
- 下一篇: 300+Jquery, CSS, Moo