當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML ImageData.height用法及代碼示例


ImageData.height屬性用於返回ImageData對象的height屬性。 ImageData()用於創建給定大小的對象。

用法:

imageData.height

例:



<!DOCTYPE html>  
<html>  
  
<head> 
    <title> 
        Web ImageData API | ImageData.height property 
    </title> 
  
</head> 
  
<body style="text-align:center;"> 
  
    <h1 style="color:green;">  
        GeeksForGeeks  
    </h1>  
                  
    <h2>ImageData height property</h2> 
  
    <button onclick="getheight();"> 
        Get height 
    </button> 
      
    <p id='height'></p> 
  
    <script type="text/javascript"> 
        function getheight () { 
        let imageData = new ImageData(100, 100); 
            document.getElementById('height').innerHTML 
                    = imageData.height; 
        } 
    </script>  
</body> 
  
</html>

輸出:

  • 單擊按鈕之前:
  • 單擊按鈕後:

支持的瀏覽器:Web API ImageData | Java支持的瀏覽器。下麵列出了ImageData.height屬性:

  • 穀歌瀏覽器
  • Internet Explorer 9
  • 火狐14
  • Safari 3.1
  • Opera 9



相關用法


注:本文由純淨天空篩選整理自DeepakDev大神的英文原創作品 Web ImageData API | ImageData.height property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。