mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-10 10:36:30 +00:00
17 lines
485 B
Plaintext
17 lines
485 B
Plaintext
// https://html.spec.whatwg.org/multipage/canvas.html#imagedata
|
|
|
|
enum PredefinedColorSpace { "srgb", "display-p3" };
|
|
|
|
dictionary ImageDataSettings {
|
|
PredefinedColorSpace colorSpace;
|
|
};
|
|
|
|
[Exposed=(Window,Worker), Serializable]
|
|
interface ImageData {
|
|
constructor(unsigned long sw, unsigned long sh, optional ImageDataSettings settings = {});
|
|
readonly attribute unsigned long width;
|
|
readonly attribute unsigned long height;
|
|
readonly attribute Uint8ClampedArray data;
|
|
|
|
};
|