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)

31 lines (30 loc) 523 B
/** @format */ /** * Enum representing various PNM (Portable Any Map) formats. */ export declare enum PnmFormat { /** * Invalid format. */ invalid = 0, /** * Portable Bitmap format. */ pbm = 1, /** * Portable Graymap format (plain text). */ pgm2 = 2, /** * Portable Graymap format (binary). */ pgm5 = 3, /** * Portable Pixmap format (plain text). */ ppm3 = 4, /** * Portable Pixmap format (binary). */ ppm6 = 5 }