gifsicle-stream-paras20xx
v0.3.2
Published
The gifsicle command line utility as a readable/writable stream.
Maintainers
Readme
node-gifsicle-stream
The gifsicle command line utility as a readable/writable stream.
Based heavily on node-jpegtran which is written by papandreou.
Installation
$ npm install gifsicle-streamUsage
The constructor accepts an optional array of command line options for the gifsicle binary:
var Gifsicle = require('gifsicle-stream'),
gifProcessor = new Gifsicle(['-w', '-O3']);
readStream.pipe(gifProcessor).pipe(writeStream);