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)
10 lines • 405 B
JavaScript
export var PnmFormat;
(function (PnmFormat) {
PnmFormat[PnmFormat["invalid"] = 0] = "invalid";
PnmFormat[PnmFormat["pbm"] = 1] = "pbm";
PnmFormat[PnmFormat["pgm2"] = 2] = "pgm2";
PnmFormat[PnmFormat["pgm5"] = 3] = "pgm5";
PnmFormat[PnmFormat["ppm3"] = 4] = "ppm3";
PnmFormat[PnmFormat["ppm6"] = 5] = "ppm6";
})(PnmFormat || (PnmFormat = {}));
//# sourceMappingURL=pnm-format.js.map