GIF support for Bare.
npm i bare-gif
const gif = require('bare-gif')
const image = require('./my-image.gif', { with: { type: 'binary' } })
const decoded = gif.decodeAnimated(image)
// {
// width: 200,
// height: 400,
// frames: [
// { width: 200, height: 400, timestamp: 0, data: <Buffer> },
// ...
// ]
// }
Apache-2.0