Interface ImageData
interface ImageData {
colorSpace: PredefinedColorSpace;
data: ImageDataArray;
height: number;
width: number;
}
colorSpace: PredefinedColorSpace;
data: ImageDataArray;
height: number;
width: number;
}
Index
Properties
Properties
ReadonlycolorSpace
The read-only ImageData.colorSpace property is a string indicating the color space of the image data.
Readonlydata
The readonly ImageData.data property returns a pixel data.
Readonlyheight
height: number
The readonly ImageData.height property returns the number of rows in the ImageData object.
Readonlywidth
width: number
The readonly ImageData.width property returns the number of pixels per row in the ImageData object.
The
ImageDatainterface represents the underlying pixel data of an area of a canvas element.MDN Reference