png-async
Version:
A simple and non-blocking PNG encoder / decoder.
13 lines • 457 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.PNG_SIGNATURE = [0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a];
exports.TYPE_IHDR = 0x49484452;
exports.TYPE_IEND = 0x49454e44;
exports.TYPE_IDAT = 0x49444154;
exports.TYPE_PLTE = 0x504c5445;
exports.TYPE_tRNS = 0x74524e53;
exports.TYPE_gAMA = 0x67414d41;
exports.COLOR_PALETTE = 1;
exports.COLOR_COLOR = 2;
exports.COLOR_ALPHA = 4;
//# sourceMappingURL=constants.js.map
;