ImageBitmap: close() method - Web APIs | MDN

Syntax

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

See also

Help improve MDN

Learn how to contribute

This page was last modified on by MDN contributors.