XMLHttpRequest for Image to Data URI with overrideMimeType
by Chris
HTML
<img src="#" id="img" />
JavaScript
var url = 'https://firebasestorage.googleapis.com/v0/b/christophereby-3733b.appspot.com/o/icon1.png?alt=media';
var xhr = new XMLHttpRequest();
xhr.open('GET', url, true);
xhr.onreadystatechange = function() {
if (xhr.readyState === XMLHttpRequest.DONE) {
if (xhr.status === 200) {
var response = xhr.responseText;
var binary = "";
for (var i = 0; i < response.length; i++) {
binary += String.fromCharCode(response.charCodeAt(i) & 0xff);
}
var image = 'data:image/jpeg;base64,' + btoa(binary);
document.getElementById('img').src = image;
}
}
}
xhr.overrideMimeType('text/plain; charset=x-user-defined');
xhr.send();