AwaitedDOM/ ImageBitmap

The ImageBitmap interface represents a bitmap image which can be drawn to a <canvas> without undue latency. It can be created from a variety of source objects using the createImageBitmap() factory method. ImageBitmap provides an asynchronous and resource efficient pathway to prepare textures for rendering in WebGL.

Properties

.height
W3C

Is an unsignedlong representing the height, in CSS pixels, of the ImageData.

Type: Promise<number>

.width
W3C

Is an unsignedlong representing the width, in CSS pixels, of the ImageData.

Type: Promise<number>

Methods

.close()
W3C

Disposes of all graphical resources associated with an ImageBitmap.

Returns: Promise<void>

Edit this page on GitHub