Skip to content

Instantly share code, notes, and snippets.

@thebuilder
Created January 6, 2016 15:36
Show Gist options
  • Save thebuilder/fdb31e1b440c0bef75dd to your computer and use it in GitHub Desktop.
Save thebuilder/fdb31e1b440c0bef75dd to your computer and use it in GitHub Desktop.
function loadImage(file) {
img = new Image();
img.onload = e => drawImageToCanvas();
img.onerror = e => $log.warn('Failed to load image.');
fileReader = new FileReader();
fileReader.onload = e => img.src = e.target.result;
fileReader.onerror = e => $log.warn('Failed to load file.');
fileReader.readAsDataURL(file);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment