ImageData.idl 267 B

123456789
  1. // https://html.spec.whatwg.org/multipage/canvas.html#imagedata
  2. [Exposed=(Window,Worker), Serializable]
  3. interface ImageData {
  4. readonly attribute unsigned long width;
  5. readonly attribute unsigned long height;
  6. readonly attribute Uint8ClampedArray data;
  7. };