Skip to content

Instantly share code, notes, and snippets.

Created July 20, 2014 09:02
Show Gist options
  • Save anonymous/9df1b0e0a279cd93b53c to your computer and use it in GitHub Desktop.
Save anonymous/9df1b0e0a279cd93b53c to your computer and use it in GitHub Desktop.
function binaryToDataURL(inputArray){
var blob = new Blob(inputArray, {'type' : 'image/jpeg'});
return URL.createObjectURL(blob);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment