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) • 483 B
TypeScript
/** @format */
/**
* Enum representing different color modes in PSD files.
*/
export declare enum PsdColorMode {
/** Bitmap color mode */
bitmap = 0,
/** Grayscale color mode */
grayscale = 1,
/** Indexed color mode */
indexed = 2,
/** RGB color mode */
rgb = 3,
/** CMYK color mode */
cmyk = 4,
/** Multi-channel color mode */
multiChannel = 5,
/** DuoTone color mode */
duoTone = 6,
/** Lab color mode */
lab = 7
}