HTML canvas ImageData width Property
Example
Alert the width of an ImageData object:
alert("Width of imgData is: " + imgData.width);
Try it yourself »
Browser Support
Internet Explorer 9, Firefox, Opera, Chrome, and Safari support the ImageData width property.
Note: Internet Explorer 8 and earlier versions, do not support the <canvas> element.
Definition and Usage
The width property returns the width of an ImageData object, in pixels.
Tip: Look at createImageData(), getImageData(), and putImageData() to learn more about the ImageData object.
JavaScript Syntax
JavaScript syntax: | imgData.width; |
---|
HTML Canvas Reference