Skip to content

Instantly share code, notes, and snippets.

@kamilogorek
Created April 15, 2013 10:13
Show Gist options
  • Save kamilogorek/5387133 to your computer and use it in GitHub Desktop.
Save kamilogorek/5387133 to your computer and use it in GitHub Desktop.
Convert image to base64
with(document)with(i=querySelector('img'),createElement('canvas'))width=i.width,height=i.height,getContext('2d').drawImage(i,0,0),toDataURL()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment