2022-10-07 19:45:09 -03:00
|
|
|
// https://html.spec.whatwg.org/multipage/canvas.html#imagedata
|
|
|
|
|
[Exposed=(Window,Worker), Serializable]
|
2020-06-21 10:57:10 -03:00
|
|
|
interface ImageData {
|
|
|
|
|
|
|
|
|
|
readonly attribute unsigned long width;
|
|
|
|
|
readonly attribute unsigned long height;
|
|
|
|
|
readonly attribute Uint8ClampedArray data;
|
|
|
|
|
|
2020-12-09 18:26:42 -03:00
|
|
|
};
|