0.1.1 • Published 11 years ago

gifsickle v0.1.1

Weekly downloads
1
License
MIT
Repository
github
Last release
11 years ago

gifsickle

a node wrapper for gifsicle and gifsicle-bin.

specifically useful for setting delays for individual frames.

install

npm install gifsickle

usage

var gifsickle = require('gifsickle');
var frames = require('glob').sync('*.gif').map(function(path) {
  return { path: path }
});

// set the delay of 0.5s to first frame
frames[0].delay = 50;

gifsickle('foo.gif', [
  frames: frames,
  delay: 15,
}, function() {
  console.log('gif is ready');
});
0.1.1

11 years ago

0.1.0

11 years ago

0.0.6

11 years ago

0.0.5

11 years ago

0.0.4

11 years ago

0.0.3

11 years ago

0.0.2

11 years ago

0.0.1

11 years ago

0.0.0

11 years ago