is-animated

2.0.2 • Public • Published

is-animated

npm travis coverage standard standard version

is-animated is a simple library for detecting animated images, it supports not only GIFs, but also APNG and WebP images.

Install

npm install is-animated

Example

const fs = require('fs')
const isAnimated = require('is-animated')

const filename = process.argv[2]

fs.readFile(filename, (err, buffer) => {
  const answer = isAnimated(buffer) ? 'Yes' : 'No'
  console.log(`Is "${filename}" animated? ${answer}.`)
})

License

MIT

Package Sidebar

Install

npm i is-animated

Weekly Downloads

55,225

Version

2.0.2

License

MIT

Unpacked Size

9.21 kB

Total Files

7

Last publish

Collaborators

  • qzb