image-js
Version:
Image processing and manipulation in JavaScript
9 lines • 314 B
TypeScript
import type { Image } from '../Image.js';
/**
* Decode input data. Data format is automatically detected.
* Possible formats: png, jpeg and tiff.
* @param data - Data to decode.
* @returns The decoded image.
*/
export declare function decode(data: ArrayBufferView): Image;
//# sourceMappingURL=decode.d.ts.map