aantthony / console-png

Print PNG images to terminal output

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

console-png

NPM Version Build Status

Print PNG images to terminal output.

Install

To use this on your terminal:

npm install -g console-png

To use this programatically:

npm install --save console-png

Terminal Usage

> console-png
Usage: console-png [PNG FILE]...
> console-png apple.png
{image shown here}

Example Usage

require('console-png').attachTo(console);

var image = require('fs').readFileSync(__dirname + '/nodejs-green.png');

console.png(image);

Screenshot

Alternate Usage

var pngStringify = require('console-png');

var image = require('fs').readFileSync(__dirname + '/nodejs-green.png');

pngStringify(image, function (err, string) {
  if (err) throw err;
  console.log(string);
})

About

Print PNG images to terminal output

License:MIT License


Languages

Language:JavaScript 100.0%