1.1.0 • Published 10 years ago

writegif v1.1.0

Weekly downloads
12
License
MIT
Repository
github
Last release
10 years ago

writegif

NPM

Take an image in the format output by http://npm.im/readimage and write it to a gif.

var readimage = require("readimage")
var writegif = require("writegif")
var fs = require("fs")

readimage(fs.readFileSync("./examples/ravenwall.png"), function (err, image) {
  writegif(image, function (err, buffer) {
    fs.writeFileSync("./ravenwall.gif", buffer)
  })
})

More examples are in the examples/ folder!

API

require("writegif")(imageBuffer, callback)

Write a buffer that represents a gif image generated from the imageBuffer.

require("writegif")(imageBuffer, options, callback)

The same as above, but options can contain:

{
  // 1: Best colors, worst performance
  // 200: default, worst colors, best performance
  quality: 10
}

LICENSE

MIT