AdvPNG bin-wrapper that makes it seamlessly available as a local dependency
npm install advpng-bin> The main purpose of this utility is to recompress png files to get the smallest possible size
You probably want imagemin-advpng instead.
```
$ npm install --save advpng-bin
`js
import {execFile} from 'node:child_process';
import advpng from 'advpng-bin';
execFile(advpng, ['--recompress', '--shrink-extra', 'image.png'], error => {
console.log('Image minified!');
});
`
``
$ npm install --global advpng-bin
```
$ advpng --help