mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
17 lines
678 B
Text
17 lines
678 B
Text
// 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 = {});
|
|
constructor(Uint8ClampedArray data, unsigned long sw, optional unsigned long sh, optional ImageDataSettings settings = {});
|
|
readonly attribute unsigned long width;
|
|
readonly attribute unsigned long height;
|
|
readonly attribute Uint8ClampedArray data;
|
|
[FIXME] readonly attribute PredefinedColorSpace colorSpace;
|
|
};
|