All Projects â†’ qzb â†’ Is Animated

qzb / Is Animated

Licence: other
Checks if image is animated 🎞

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Is Animated

Pixterm
Draw images in your ANSI terminal with true color
Stars: ✭ 782 (+4500%)
Mutual labels:  webp, gif, png
Lilliput
Resize images and animated GIFs in Go
Stars: ✭ 1,690 (+9841.18%)
Mutual labels:  webp, gif, png
Flyimg
Dockerized PHP7 application runs as a Microservice to resize and crop images on the fly. Get optimised images with MozJPEG, WebP or PNG using ImageMagick. Includes face detection, cropping, face blurring, image rotation and many other options. Abstract storage based on FlySystem in order to store images on any provider (local, AWS S3...).
Stars: ✭ 762 (+4382.35%)
Mutual labels:  webp, gif, png
Imaginary
Fast, simple, scalable, Docker-ready HTTP microservice for high-level image processing
Stars: ✭ 4,107 (+24058.82%)
Mutual labels:  webp, gif, png
Sdwebimage
Asynchronous image downloader with cache support as a UIImageView category
Stars: ✭ 23,928 (+140652.94%)
Mutual labels:  webp, gif, png
Imageprocessor
📷 A fluent wrapper around System.Drawing for the processing of image files.
Stars: ✭ 2,452 (+14323.53%)
Mutual labels:  webp, gif, png
Govips
A lightning fast image processing and resizing library for Go
Stars: ✭ 442 (+2500%)
Mutual labels:  webp, gif, png
Libvips
A fast image processing library with low memory needs.
Stars: ✭ 6,094 (+35747.06%)
Mutual labels:  webp, gif, png
sail
The missing small and fast image decoding library for humans (not for machines) ⛵ https://sail.software
Stars: ✭ 206 (+1111.76%)
Mutual labels:  png, gif, webp
gfxprim
Open-source modular 2D bitmap graphics library with emphasis on speed and correctness.
Stars: ✭ 32 (+88.24%)
Mutual labels:  png, gif, webp
imagor
Fast, Docker-ready image processing server in Go and libvips
Stars: ✭ 2,276 (+13288.24%)
Mutual labels:  png, gif, webp
Optimizt
CLI image optimization tool
Stars: ✭ 594 (+3394.12%)
Mutual labels:  webp, gif, png
Compress Images
Minify size your images. Image compression with extension: jpg/jpeg, svg, png, gif. NodeJs
Stars: ✭ 331 (+1847.06%)
Mutual labels:  gif, png
yoga-image-optimizer
A graphical tool to convert and optimize JPEG, PNG and WebP images (based on YOGA)
Stars: ✭ 85 (+400%)
Mutual labels:  png, webp
Sharp
High performance Node.js image processing, the fastest module to resize JPEG, PNG, WebP, AVIF and TIFF images. Uses the libvips library.
Stars: ✭ 21,131 (+124200%)
Mutual labels:  webp, png
Mort
Storage and image processing server written in Go
Stars: ✭ 420 (+2370.59%)
Mutual labels:  webp, png
Imagemin
[Unmaintained] Minify images seamlessly
Stars: ✭ 4,948 (+29005.88%)
Mutual labels:  gif, png
QuickImageFX
Simplifying image manipulation using GDI, Graphics32, OpenCV or Vampyre Imaging libraries
Stars: ✭ 41 (+141.18%)
Mutual labels:  png, gif
Automator Workflows
A collection of Automator workflows (services) that speed up your design / development process. Compatible with LaunchBar 6 and 7 Actions
Stars: ✭ 439 (+2482.35%)
Mutual labels:  webp, png
Imagesharp
📷 A modern, cross-platform, 2D Graphics library for .NET
Stars: ✭ 5,186 (+30405.88%)
Mutual labels:  gif, png

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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].