Interface: ImageReadbackResult
Image data returned from a texture readback operation.
Properties
width
width: number;
Width of the image, in pixels.
height
height: number;
Height of the image, in pixels.
kind
kind: "rgba" | "png" | "jpeg";
Encoding of the returned image data.
data
data: string;
Base64-encoded image data.