danielchicote / optipng-bin

optipng bin-wrapper that makes it seamlessly available as a local dependency

Home Page:http://optipng.sourceforge.net

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

optipng-bin Build Status

OptiPNG is a PNG optimizer that recompresses image files to a smaller size, without losing any information

You probably want imagemin-optipng instead.

Install

$ npm install --save optipng-bin

Usage

const {execFile} = require('child_process');
const optipng = require('optipng-bin');

execFile(optipng, ['-out', 'output.png', 'input.png'], err => {
	console.log('Image minified!');
});

CLI

$ npm install --global optipng-bin
$ optipng --help

License

MIT © Imagemin

About

optipng bin-wrapper that makes it seamlessly available as a local dependency

http://optipng.sourceforge.net

License:MIT License


Languages

Language:JavaScript 100.0%