Skip to content

Instantly share code, notes, and snippets.

@vkurchatkin
Created May 12, 2014 09:42
Show Gist options
  • Save vkurchatkin/bb41418782ada93cdb1a to your computer and use it in GitHub Desktop.
Save vkurchatkin/bb41418782ada93cdb1a to your computer and use it in GitHub Desktop.
function getImage (url) {
var res;
var xhr = new XMLHttpRequest();
xhr.open('GET', url, false);
xhr.responseType = 'arraybuffer';
xhr.onload = function () {
res = btoa(String.fromCharCode.apply(null, new Uint8Array(xhr.response)))
};
xhr.send();
return res;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment