THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

HTML canvas ImageData width Property

HTML canvas Reference HTML Canvas Reference

Example

Alert the width of an ImageData object:

alert("Width of imgData is: " + imgData.width);
Try it yourself »

Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

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 HTML Canvas Reference