web api constructor
HTMLImageElement: Image() constructor
The Image()
constructor creates a new HTMLImageElement instance. It is functionally
equivalent to document.createElement('img').
[!NOTE] This function should not be confused with the CSS
image()function.
Syntax
new Image()
new Image(width)
new Image(width, height)
Parameters
widthOptional- : The width of the image (i.e., the value for the
widthattribute).
- : The width of the image (i.e., the value for the
heightOptional- : The height of the image (i.e., the value for the
heightattribute).
- : The height of the image (i.e., the value for the
Usage note
The entire bitmap is loaded regardless of the sizes specified in the constructor. The
size specified in the constructor is reflected through the properties
width and height of the
resulting instance. The intrinsic width and height of the image in CSS pixels are
reflected through the properties naturalWidth and
naturalHeight. If no size is specified in the
constructor both pairs of properties have the same values.
Examples
const myImage = new Image(100, 200);
myImage.src = "picture.jpg";
document.body.appendChild(myImage);
This would be the equivalent of defining the following HTML tag inside the
<body>:
<img width="100" height="200" src="/firefox/mdn-asset-missing.svg" />
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.