当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。