Zopfli imagemin plugin
$ npm install --save imagemin-zopfli
const imagemin = require('imagemin');
const imageminZopfli = require('imagemin-zopfli');
imagemin(['images/*.png'], 'build/images', {
use: [
imageminZopfli({more: true})
]
}).then(() => {
console.log('Images optimized');
});
Type: Object
Type: boolean
Default: false
Convert 16-bit per channel image to 8-bit per channel.
Type: boolean
Default: false
Allow altering hidden colors of fully transparent pixels.
Type: integer
Default: 15
Number of iterations for images smaller than 200 KiB.
Type: boolean
Default: false
Compress more using more iterations (depending on file size).
Type: Buffer
Buffer to optimize.
MIT © imagemin