ImageBitmap: close() method
Note: This feature is available in Web Workers.
The ImageBitmap.close()
method disposes of all graphical resources associated with an ImageBitmap
.
Syntax
js
close()
Parameters
None.
Return value
None (undefined
).
Examples
js
const offscreen = new OffscreenCanvas(256, 256);
const gl = offscreen.getContext("webgl");
// Perform some drawing using the gl context
const bitmap = offscreen.transferToImageBitmap();
// ImageBitmap { width: 256, height: 256 }
bitmap.close();
// ImageBitmap { width: 0, height: 0 } — disposed
Specifications
Specification |
---|
HTML # dom-imagebitmap-close-dev |
Browser compatibility
Report problems with this compatibility data on GitHubdesktop | mobile | server | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
close |
Legend
Tip: you can click/tap on a cell for more information.
- Full support
- Full support
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
See also
- The interface defining this method,
ImageBitmap
.