@blabu.com/countdown-gif
TypeScript icon, indicating that this package has built-in type declarations

1.0.6 • Public • Published

Countdown GIF generator for emails and whatnot

Simple library to generate countdown GIFs in nodejs using Cairo/Canvas implementation usable for on-demand image generation.

Image Options

  • width - width in pixels [defaults to 200]
  • height - height in pixels [defaults to 200]
  • color - hex colour code for the text [defaults to ffffff]
  • bg - hex colour code for the background [defaults to 000000]
  • frames - number of frames (also number of seconds) the countdown will run before looping [defaults to 30]
  • fontSize - size of font, recommended is width / 12, but play with this to see what looks good
  • fontFamily - font family, see #More Fonts
  • fontStyle - font style
  • expired - expired text, blinking
  • quality - final output quality

Timer value

  • end - Any momentjs parseable string, ideally JSON.stringify(new Date()) format [e.g. 2016-06-24T20:35:00.000Z]

Default options

width: 200,
height: 200,
color: 'ffffff',
bg: '000000',
frames: 30,
fontSize: 26,
fontFamily: 'Courier New',
fontStyle: 'bold',
expired: '00:00:00',
quality: 90

More fonts

import { registerFont } from 'canvas'
registerFont(path, 'name')
ImageOptions.familyName = 'name'

Package Size

The main dependency Cairo has around 30MB when installed on Mac.

Samples

Attached webserver offers generating GIF into file or as direct output of express response (the fastest method of serving)

License

MIT

Inspired by

Readme

Keywords

Package Sidebar

Install

npm i @blabu.com/countdown-gif

Weekly Downloads

12

Version

1.0.6

License

MIT

Unpacked Size

16 kB

Total Files

6

Last publish

Collaborators

  • cernytomas
  • lukaskaras
  • poky85
  • t.voslar
  • tomasstrejcek