1.0.0 • Published 2 years ago
oxipng-bin v1.0.0
oxipng-bin
This is a bin wrapper for OxiPNG for use with
imagemin
and theimagemin-oxipng
plugin.
You probably want the @vheemstra/imagemin-oxipng
plugin instead.
Install
npm install --save oxipng-bin
Usage
import {execFile} from 'node:child_process';
import oxipng from 'oxipng-bin';
execFile(oxipng, [
'--opt', '4',
'--strip', 'safe',
'--out', 'output.png',
'input.png'
], err => {
if (err) {
throw err;
}
console.log('Image optimized!');
});
CLI
npm install --global oxipng-bin
oxipng --help
License & Info
MIT © Imagemin OxiPNG by Josh Holmer (Open-source software, distributed under the MIT license.) This package is made by Philip van Heemstra Based on jpegtran-bin by Sindre Sorhus Info on building oxipng binaries
1.0.0
2 years ago