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)

15 lines (14 loc) 241 B
/** @format */ /** * Enum representing different contrast modes. */ export declare enum ContrastMode { /** * Proportional contrast mode. */ proportional = 0, /** * S-curve contrast mode. */ scurve = 1 }