# gifsicle-bin **Repository Path**: imagemin-cn/gifsicle-bin ## Basic Information - **Project Name**: gifsicle-bin - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2019-08-30 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # gifsicle-bin [![Build Status](https://travis-ci.org/imagemin/gifsicle-bin.svg?branch=master)](https://travis-ci.org/imagemin/gifsicle-bin) > 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. You probably want [`imagemin-gifsicle`](https://github.com/imagemin/imagemin-gifsicle) instead. ## Install ``` $ npm install gifsicle ``` ## Usage ```js const {execFile} = require('child_process'); const gifsicle = require('gifsicle'); execFile(gifsicle, ['-o', 'output.gif', 'input.gif'], err => { console.log('Image minified!'); }); ``` ## CLI ``` $ npm install --global gifsicle ``` ``` $ gifsicle --help ``` ## License MIT © [Imagemin](https://github.com/imagemin)