1.0.1 • Published 5 years ago

fingerprint-r551 v1.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
5 years ago

Install:

npm i fingerprint-r551

Usage:

const fingerprint = require('fingerprint-r551');

let func = async () => {
  let bitmap = await fingerprint.getImage(); // bitmap of Jimp npm module 

  await fingerprint.saveImage('./my/path/image.png'); // save image to file

  let buffer = await fingerprint.getBMP(); // get buffer of BMP image

  let buffer = await fingerprint.getPNG(); // get buffer of PNG image
};