backoffice/node_modules/zopflipng-bin
root ab9f8bb658 first commit 2020-02-06 10:09:39 +00:00
..
lib first commit 2020-02-06 10:09:39 +00:00
vendor first commit 2020-02-06 10:09:39 +00:00
cli.js first commit 2020-02-06 10:09:39 +00:00
index.js first commit 2020-02-06 10:09:39 +00:00
license first commit 2020-02-06 10:09:39 +00:00
package.json first commit 2020-02-06 10:09:39 +00:00
readme.md first commit 2020-02-06 10:09:39 +00:00

readme.md

zopflipng-bin Build Status

zopfli Compression Algorithm is a new zlib (gzip, deflate) compatible compressor that takes more time (~100x slower), but compresses around 5% better than zlib and better than any other zlib-compatible compressor

Install

$ npm install --save zopflipng-bin

Usage

var execFile = require('child_process').execFile;
var zopflipng = require('zopflipng-bin');

execFile(zopflipng, ['-m', '--lossy_8bit', 'input.png', 'outout.png'], function (err) {
	console.log('Image minified!');
});

CLI

$ npm install --global zopflipng-bin
$ zopflipng --help

License

MIT © imagemin