Movatterモバイル変換


[0]ホーム

URL:


  1. Web
  2. Web APIs
  3. HTMLCanvasElement
  4. width

HTMLCanvasElement: width property

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨July 2015⁩.

TheHTMLCanvasElement.width property is apositiveinteger reflecting thewidth HTMLattribute of the<canvas> element interpreted in CSS pixels. When theattribute is not specified, or if it is set to an invalid value, like a negative, thedefault value of300 is used.

Setting thewidth property resets the entire rendering context to its default state. This includes clearing the canvas (backing buffer), resetting the current path, and resettingall properties likefillStyle andglobalCompositeOperation. This reset occurs for all context types, and occurs even when settingwidth to its current value. To restore the previous content after changing the width, useCanvasRenderingContext2D.getImageData() andCanvasRenderingContext2D.putImageData(). Context properties must be separately tracked and restored.

This is one of the two properties, the other beingHTMLCanvasElement.height, that controls the size of the canvas.

Value

A number.

Examples

Given this<canvas> element:

html
<canvas width="300" height="300"></canvas>

You can get the width of the canvas with the following code:

js
const canvas = document.getElementById("canvas");console.log(canvas.width); // 300

Specifications

Specification
HTML
# dom-canvas-height

Browser compatibility

See also

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp