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)

45 lines (44 loc) 1.16 kB
/** @format */ /** * Enum representing different photometric types for TIFF images. */ export declare enum TiffPhotometricType { /** White is zero (0) */ whiteIsZero = 0, /** Black is zero (1) */ blackIsZero = 1, /** RGB color model (2) */ rgb = 2, /** Palette color (3) */ palette = 3, /** Transparency mask (4) */ transparencyMask = 4, /** CMYK color model (5) */ cmyk = 5, /** YCbCr color model (6) */ yCbCr = 6, /** Reserved (7) */ reserved7 = 7, /** CIE L*a*b* color model (8) */ cieLab = 8, /** ICC L*a*b* color model (9) */ iccLab = 9, /** ITU L*a*b* color model (10) */ ituLab = 10, /** Logarithmic luminance (32844) */ logL = 11, /** Logarithmic luminance and chrominance (32845) */ logLuv = 12, /** Color filter array (32803) */ colorFilterArray = 13, /** Linear raw (34892) */ linearRaw = 14, /** Depth map (51177) */ depth = 15, /** Unknown photometric type */ unknown = 16 } /** * Constant representing the length of the TiffPhotometricType enum. */ export declare const TiffPhotometricTypeLength = 17;