ImageData: width プロパティ
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.
読み取り専用プロパティ ImageData.width
は、ImageData
オブジェクトの 1 行あたりのピクセル数を返します。
値
数値です。
例
この例では、幅 200 ピクセル、高さ 100 ピクセルの ImageData
オブジェクトを生成します。したがって、width
プロパティは 200
です。
js
let imageData = new ImageData(200, 100);
console.log(imageData.width); // 200
仕様書
Specification |
---|
HTML Standard # dom-imagedata-width-dev |
ブラウザーの互換性
BCD tables only load in the browser