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)
23 lines (22 loc) • 419 B
TypeScript
/** @format */
/**
* Enum representing the types of VP8L image transforms.
*/
export declare enum VP8LImageTransformType {
/**
* Predictor transform type.
*/
predictor = 0,
/**
* Cross color transform type.
*/
crossColor = 1,
/**
* Subtract green transform type.
*/
subtractGreen = 2,
/**
* Color indexing transform type.
*/
colorIndexing = 3
}