Interface ImageData
interface ImageData {
colorSpace: PredefinedColorSpace;
data: Uint8ClampedArray;
height: number;
width: number;
}
colorSpace: PredefinedColorSpace;
data: Uint8ClampedArray;
height: number;
width: number;
}
 Index
Properties
 Properties
ReadonlycolorSpace 
Readonlydata
Returns the one-dimensional array containing the data in RGBA order, as integers in the range 0 to 255.
Readonlyheight
height: number
Returns the actual dimensions of the data in the ImageData object, in pixels.
Readonlywidth
width: number
Returns the actual dimensions of the data in the ImageData object, in pixels.
The underlying pixel data of an area of a
MDN Reference