利用js獲取圖片尺寸與圖片大小(高度與寬度)

來源:互聯網
上載者:User
關鍵字 網頁製作 Ajax JavaScript

利用獲取圖片尺寸與圖片大小(高度與寬度)要注意一點的是要等 圖片載入完成後才能js 獲取圖片寬度與高度的,所以要判斷在readystate=="complete"的狀態下獲取大小,如果是利用file上傳的話, 每次都要點擊清除image=new image();  imgage.width與高度哦。
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "HTTP://www.w3.org/tr/xhtml1/dtd/ xhtml1-transitional.dtd">
<html xmlns="HTTP://www.w3.org/1999/xhtml">
<head>
<meta HTTP-equiv="content-type" content="text/html; charset=gb2312" />
<title>js獲取圖片尺寸與圖片大小(高度與寬度)</title>
<script>
function checkimg(img)

{
var message="";
var maxwidth=1;//設置圖片寬度界限
var maxheight=1;//設置圖片高度界限

if(img.readystate!="complete"){

return false;//確保圖片完全載入

}
if(img.offsetheight>maxheight) message+="r高度超額:"+img.offsetheight;
if(img.offsetwidth>maxwidth) message+="r寬度超額:"+img.offsetwidth;
if(message!="") alert(message);
}

</script>
</head>
<body>
<img src="images/frequency.gif" border=0 id="img1" onload="checkimg(this);" >
<br> <input id=inp type="file" onpropertychange="img1.src=this.value;" >
</body>
圖片載入完成後才能成功獲取圖片大小,所以要判斷在readystate=="complete"的狀態下獲取大小

測試代碼二
<script>
function qford_getimagesize(filepath)
{
var imgsize={
width:0,
height:0
};
image=new image();
image.src=filepath;
imgsize.width =image .width;
imgsize .height=image .height;
return imgsize;
}

</script>

js獲取圖片尺寸函數測試:</br>  
<img src="test.jpg" mce_src="test.jpg" />  
< script type="text/網頁特效"><!--  
var a=qford_getimagesize("test.jpg");  
alert(' 寬:'+a.width +'  高:'+a.height);
</script>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.