OffscreenCanvas()

Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.

OffscreenCanvas() 생성자는 새롭게 초기화된 OffscreenCanvas 객체를 반환합니다.

구문

new OffscreenCanvas(width, height);

매개 변수

width

offscreen 캔버스의 너비

height

offscreen 캔버스의 높이

예시

이 예시는 OffscreenCanvas() 생성자를 이용해 새로운 offscreen 캔버스를 생성하고, WebGL 컨텍스트의 getContext() 메소드를 사용해 초기화합니다.

let offscreen = new OffscreenCanvas(256, 256);
let gl = offscreen.getContext('webgl');

명세서

Specification
HTML Standard
# dom-offscreencanvas-dev

브라우저 호환성

BCD tables only load in the browser

더 보기