ImageBitmap: close() メソッド
ImageBitmap.close()
メソッドは、ImageBitmap
に関連するすべてのグラフィカルリソースを破棄します。
構文
js
close()
引数
なし。
返値
なし (undefined
)。
例
js
const offscreen = new OffscreenCanvas(256, 256);
const gl = offscreen.getContext("webgl");
// gl コンテキストを使用して描画する。
const bitmap = offscreen.transferToImageBitmap();
// ImageBitmap { width: 256, height: 256 }
bitmap.close();
// ImageBitmap { width: 0, height: 0 } — 破棄
仕様書
Specification |
---|
HTML Standard # dom-imagebitmap-close-dev |
ブラウザーの互換性
BCD tables only load in the browser
関連情報
- このメソッドを定義しているインターフェイス、
ImageBitmap