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
相关用法
- HTML ImageData.data用法及代码示例
- HTML ImageData.width用法及代码示例
- CSS transition-property用法及代码示例
- CSS nav-down用法及代码示例
- CSS nav-up用法及代码示例
- CSS nav-right用法及代码示例
- CSS right属性用法及代码示例
- CSS top属性用法及代码示例
- CSS all属性用法及代码示例
- CSS quotes属性用法及代码示例
- CSS align-self用法及代码示例
- HTML Bdo dir用法及代码示例
注:本文由纯净天空筛选整理自DeepakDev大神的英文原创作品 Web ImageData API | ImageData.height property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。