OffscreenCanvas.width
Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The width
property returns and sets the width of an OffscreenCanvas
object.
Syntax
var pxl = offscreen.width; offscreen.width = pxl;
Examples
Creating a new offscreen canvas and returning or setting the width of the offscreen canvas:
var offscreen = new OffscreenCanvas(256, 256); offscreen.width; // 256 offscreen.width = 512;
Specifications
Specification |
---|
HTML Standard (HTML) # dom-offscreencanvas-width-dev |
Browser compatibility
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
width |
69 |
79 |
44
See bug 1390089.
|
No |
56 |
No |
No |
69 |
44
See bug 1390089.
|
48 |
No |
10.0 |
See also
-
OffscreenCanvas
, the interface this property belongs to.
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/OffscreenCanvas/width