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


HTML ImageData.width用法及代码示例


ImageData.width属性用于返回ImageData对象的width属性。 ImageData()用于创建给定大小的对象。

用法:

imageData.width

例:



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

输出:

  • 单击按钮之前:
  • 单击按钮后:

支持的浏览器:ImageData.width属性支持的浏览器如下所示:

  • 谷歌浏览器
  • Internet Explorer 9
  • 火狐14
  • Safari 3.1
  • Opera 9



相关用法


注:本文由纯净天空筛选整理自DeepakDev大神的英文原创作品 Web ImageData API | ImageData.width property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。