--- title: OffscreenCanvas.height slug: Web/API/OffscreenCanvas/height tags: - API - Canvas - Experimental - OffscreenCanvas - Property - Reference translation_of: Web/API/OffscreenCanvas/height ---
height
프로퍼티는 {{domxref("OffscreenCanvas")}} 객체에 할당된 높이를 반환합니다.
var pxl = offscreen.height; offscreen.height = pxl;
새로운 offscreen 캔버스를 생성하고 높이를 설정하거나 반환합니다.
var offscreen = new OffscreenCanvas(256, 256); offscreen.height; // 256 offscreen.height = 512;
Specification | Status | Comment |
---|---|---|
{{SpecName('HTML WHATWG', "#dom-offscreencanvas-height", "OffscreenCanvas.height")}} | {{Spec2('HTML WHATWG')}} |
{{Compat("api.OffscreenCanvas.height")}}