Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

giflossy

imagemin14.7kMIT3.0.41

giflossy wrapper that makes it seamlessly available as a local dependency

gif, img, image, compress, minify, optimize

readme

giflossy-bin npm version npm downloads Build Status Build status

giflossy is an encoder (based on gifsicle) which implements lossy LZW compression. It can reduce animgif file sizes by 30%—50% at a cost of some dithering/noise..

gifsicle manipulates GIF image files in many different ways. Depending on command line options, it can merge several GIFs into a GIF animation; explode an animation into its component frames; change individual frames in an animation; turn interlacing on and off; add transparency and much more.

Install

$ npm install --save giflossy

Included Binaries

  • <input checked="" disabled="" type="checkbox"> Mac OS X
  • <input checked="" disabled="" type="checkbox"> Linux x64
  • <input disabled="" type="checkbox"> Linux x86
  • <input disabled="" type="checkbox"> Windows x64
  • <input disabled="" type="checkbox"> Windows x86

Usage

const {execFile} = require('child_process');
const giflossy = require('giflossy');

execFile(giflossy, ['-O3' '--lossy=80', '-o', 'output.gif', 'input.gif'], err => {
    console.log('Image minified!');
});

CLI

$ npm install --global giflossy
$ giflossy --help

License

MIT © Jih-Chi Lee