Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

gif-creation-service

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gif-creation-service

Node service that makes it super-simple to create GIFs

  • 0.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Overview

gif-creation-service provides a Promise-based-interface for creating GIFs. It currently only supports animated GIFs (who wants a static GIF anyways?) from PNG images. Underneath the hood it uses gifencoder.

How to install

npm install --save gif-creation-service

How to use

Here's an example that creates a repeating GIF from 8 images at 1 FPS.

const GifCreationService = require('gif-creation-service');

const pngImages = [
    'thumbnail-0001.png',
    'thumbnail-0002.png',
    'thumbnail-0003.png',
    'thumbnail-0004.png',
    'thumbnail-0005.png',
    'thumbnail-0006.png',
    'thumbnail-0007.png',
    'thumbnail-0008.png'
];
const outputGifFile = 'output.gif';

GifCreationService.createAnimatedGifFromPngImages(pngImages, outputGifFile, {repeat: true, fps: 1, quality: 10})
.then(outputGifFile => {
    console.log(`Alright, GIF ${outputGifFile} created!`);
});

Keywords

FAQs

Package last updated on 03 Aug 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc