Skip to content

Instantly share code, notes, and snippets.

@marisusis
Created May 24, 2016 14:18
Show Gist options
  • Save marisusis/b0833aa0947e6cc58cf52de807c72cf2 to your computer and use it in GitHub Desktop.
Save marisusis/b0833aa0947e6cc58cf52de807c72cf2 to your computer and use it in GitHub Desktop.
var AsciiImage = (function() {
var image = document.createElement('image');
var canvas = document.createElemnt('canvas');
var ctx = canvas.getContext('2d');
return function (url) {
image.src = url;
ctx.drawImage(image,0,0);
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment