EvImageData Interface
The EvImageData TS interface defines a blueprint of a JS object that specifies the raw binary data of a given image.
Properties
An EvImageData object has the following properties:
data: ArrayBuffer;An array of bytes, the raw binary data of the given image.
format: EvImageFormat;A member of the
EvImageFormatenumeration, the image file format of the given image.
Examples
TS
JS
- { data: {...}, format: EvImageFormat.Jpeg }
- { data: {...}, format: "jpeg" }
01 April 2025