fetch('https://site.ru/img.png')
.then(function(response) { return response.blob(); })
.then(function(blob) {
var image = document.createElement('img');
var url = URL.createObjectURL(blob);
image.setAttribute('src', url);
document.body.appendChild(image);
});