image-in-browser
Version:
Package for encoding / decoding images, transforming images, applying filters, drawing primitives on images on the client side (no need for server Node.js)
20 lines (19 loc) • 535 B
TypeScript
/** @format */
/**
* The type of image this frame represents. Multi-page formats, such as
* TIFF, can represent the frames of an animation as pages in a document.
*/
export declare enum FrameType {
/**
* The frames of this document are to be interpreted as animation.
*/
animation = 0,
/**
* The frames of this document are to be interpreted as pages of a document.
*/
page = 1,
/**
* The frames of this document are to be interpreted as a sequence of images.
*/
sequence = 2
}