Skip to content

Instantly share code, notes, and snippets.

@ynonp
Created November 5, 2015 06:40
Show Gist options
  • Save ynonp/f017b0d667319a0aeb16 to your computer and use it in GitHub Desktop.
Save ynonp/f017b0d667319a0aeb16 to your computer and use it in GitHub Desktop.
self.load=function(){
var value = localStorage.getItem('picture');
if ( !value ) { return; }
self.clear();
var img = new Image;
img.src = value;
img.onload = function(){
ctx.drawImage(img,0,0);
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment