Skip to content

Instantly share code, notes, and snippets.

@ijse
Created June 4, 2015 06:31
Show Gist options
  • Save ijse/e67214dea1d618a4ef07 to your computer and use it in GitHub Desktop.
Save ijse/e67214dea1d618a4ef07 to your computer and use it in GitHub Desktop.
convert base64 image to file object
var img_b64 = lcvs.toDataURL('image/png');
var png = img_b64.split(',')[1];
var the_file = new Blob([window.atob(png)], {type: 'image/png', encoding: 'utf-8'});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment