UNPKG

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)

19 lines (18 loc) 330 B
/** @format */ /** * Enumeration representing different quantization methods. */ export declare enum QuantizeMethod { /** * Neural Network based quantization. */ neuralNet = 0, /** * Octree based quantization. */ octree = 1, /** * Binary based quantization. */ binary = 2 }