Skip to content

Instantly share code, notes, and snippets.

Created July 20, 2014 08:50
Show Gist options
  • Save anonymous/7fc9cce195af37565072 to your computer and use it in GitHub Desktop.
Save anonymous/7fc9cce195af37565072 to your computer and use it in GitHub Desktop.
function drawBinary(binaryImage){
var canvas = document.createElement('canvas');
var context = canvas.getContext('2d');
var imageData = context.createImageData(width, height);
context.putImageData(binaryImage);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment