Skip to content

Instantly share code, notes, and snippets.

@ryanburgess
Created November 28, 2015 05:33
Show Gist options
  • Save ryanburgess/90dfd10bb29bdd5d3961 to your computer and use it in GitHub Desktop.
Save ryanburgess/90dfd10bb29bdd5d3961 to your computer and use it in GitHub Desktop.
Example of console-png
var png = require('console-png');
var image = require('fs').readFileSync(__dirname + '/nodejs-green.png');
png(image, function (err, string) {
if (err) throw err;
console.log(string);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment