0.0.1 • Published 2 years ago

cmd-img-printer v0.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Installation

npm i cmd-img-printer

Usage

const cmdPrinter = require("cmd-img-printer");

cmdPrinter.toStr("./images/amazing image.png", (err, out) => {
  if (err) throw err;
  console.clear();
  console.log(out);
});

Additional info

  • This package uses Jimp as image processor. All formats supported by Jimp are supported.

  • This package uses chalk for colorizing output.

  • If you noticed a bug or have a suggestion, please open an issue on GitHub