How use compress-images?
https://www.npmjs.com/package/compress-images
Gif image was - 4.1mb
;
Gif image became - 4.2mb
;
Gif image after compression is obtained more size than before. Why?
I try:
compress_images('src/img/**/*.{jpg,JPG,jpeg,JPEG,png,svg,gif}', 'build/img/', {compress_force: false, statistic: true, autoupdate: true}, false,
{jpg: {engine: 'mozjpeg', command: ['-quality', '60']}},
{png: {engine: 'pngquant', command: ['--quality=0-20']}},
{svg: {engine: 'svgo', command: '--multipass'}},
{gif: {engine: 'gifsicle', command: false}});