UNPKG

pngjs

Version:

PNG encoder/decoder in pure JS, supporting any bit size & interlace, async & sync with full test suite.

13 lines (9 loc) 252 B
"use strict"; let parse = require("./parser-sync"); let pack = require("./packer-sync"); exports.read = function (buffer, options) { return parse(buffer, options || {}); }; exports.write = function (png, options) { return pack(png, options); };