Image()
Image Element constructor
Accepts two optional parameters: Image([unsigned long width, unsigned long height])
Returns an HTMLImageElement instance just as document.createElement('img')
would.
Example:
JavaScript
Copy Code
var myImage = new Image(100, 200); myImage.src = 'picture.jpg'; console.log(myImage);
Result:
HTML
Copy Code
<img width="100" height="200" src="picture.jpg">
Specification | Status | Comment |
---|---|---|
HTML5 The definition of the Image constructor in that specification. |
Recommendation | A constructor (with 2 optional parameters) has been added. The following properties are now obsolete: name , border , align , hspace , vspace , and longdesc .The following properties are now unsigned long , instead of long : height , and width .The following properties have been added: crossorigin , |
License
© 2016 Mozilla Contributors
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-us/docs/web/api/htmlimageelement/image