ImageBitmap: close() Methode
Hinweis: Dieses Feature ist verfügbar in Web Workers.
Die ImageBitmap.close()
-Methode entsorgt alle grafischen Ressourcen, die mit einem ImageBitmap
assoziiert sind.
Syntax
js
close()
Parameter
Keine.
Rückgabewert
Keine (undefined
).
Beispiele
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
Spezifikationen
Specification |
---|
HTML Standard # dom-imagebitmap-close-dev |
Browser-Kompatibilität
BCD tables only load in the browser
Siehe auch
- Die Schnittstelle, die diese Methode definiert,
ImageBitmap
.