ImageData: height プロパティ

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.height は、ImageData オブジェクトの行数を返します。

数値です。

この例では、幅 200 ピクセル、高さ 100 ピクセルの ImageData オブジェクトを生成します。したがって、height プロパティは 100 です。

js
let imageData = new ImageData(200, 100);
console.log(imageData.height); // 100

仕様書

Specification
HTML Standard
# dom-imagedata-height-dev

ブラウザーの互換性

BCD tables only load in the browser

関連情報