1.0.0 • Published 6 years ago

placeholder-img v1.0.0

Weekly downloads
4
License
ISC
Repository
github
Last release
6 years ago

placeholder-img Build Status

Generates low-res blurred versions of images that can be used as placeholders while lazy-loading them.

Installation

  • npm install --save placeholder-img

Usage

  • To create a placeholder image file,
  const placeholderImg = require('placeholder-img');

  const src = 'path/to/image';
  await placeholderImg.toFile(src, /* optional destination */);

If the destination is not provided, the image will be saved to ${SRC}-placeholder.${FORMAT}.

  • To generate the placeholder image in base64 encoding,
  const placeholderImg = require('placeholder-img');

  const src = 'path/to/image';
  const base64Image = await placeholderImg.toBase64(src);

License

MIT © Sivasubramanyam A