imagemin / 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 GitHub Actions 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

import {execFile} from 'node:child_process';
import optipng from 'optipng-bin';

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

CLI

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

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%