var xhr = new XMLHttpRequest();
xhr.open('GET', 'http://static.reddit.com/reddit.com.header.png', true);
xhr.responseType = 'arraybuffer';
xhr.onload = function(e) {
if (this.status == 200) {
var uInt8Array = new Uint8Array(this.response);
var byte3 = uInt8Array[4];
var bb = new WebKitBlobBuilder();
bb.append(xhr.response);
var blob = bb.getBlob('image/png');
var base64 = window.btoa(blob);
alert(base64);
}
};
xhr.send();
基本的に、私がここでやろうとしているのは、画像を取得し、base64に変換することです。
コメントを読むことから ここ 、「確か。ArrayBufferとしてリソースを取得した後、そこからblobを作成します。それができたら、ファイル/ blobを直接base64エンコードできます(ウィンドウ。 btoa())またはFileReader.readAsDataURL()。」
ただし、blob
は[object blob]にすぎませんが、base64に変換してデータを使用してimgタグで表示できるように、イメージからバイナリを取得する必要があります。
誰もこれを達成する方法を知っていますか?
前もって感謝します!
Chrome(OSX Chrome、Firefox 12、Safari 6、iOS Chrome、iOS Safariでテスト済み)ではBlobBuilderを使用しないでください:
ex1: http://jsfiddle.net/malraux/xGUsu/ (原則)
ex2: http://jsfiddle.net/xGUsu/78/ (完全な例で動作)
var xhr = new XMLHttpRequest();
xhr.open('GET', 'doodle.png', true);
xhr.responseType = 'arraybuffer';
// Process the response when the request is ready.
xhr.onload = function(e) {
if (this.status == 200) {
// Create a binary string from the returned data, then encode it as a data URL.
var uInt8Array = new Uint8Array(this.response);
var i = uInt8Array.length;
var binaryString = new Array(i);
while (i--)
{
binaryString[i] = String.fromCharCode(uInt8Array[i]);
}
var data = binaryString.join('');
var base64 = window.btoa(data);
document.getElementById("myImage").src="data:image/png;base64," + base64;
}
};
xhr.send();
注:このコードは現時点で7年以上前です。ほとんどのブラウザで機能するはずですが、次の提案に基づいた更新版があります。より新しいブラウザでのみ動作する@TypeError iOS Safariの例外を除く(responseType = 'blob'
をサポートする場合としない場合があります-テストしてください!):
var xhr = new XMLHttpRequest();
xhr.open('get', 'doodle.png', true);
// Load the data directly as a Blob.
xhr.responseType = 'blob';
xhr.onload = () => {
document.querySelector('#myimage').src = URL.createObjectURL(this.response);
};
xhr.send();
Blob
を取得して、 window.URL.createObjectURL
。これにより、巨大な文字列を作成して、すべてを数回コピーするのを防ぎます。
var xhr = new XMLHttpRequest();
xhr.open('GET', 'https://i.imgur.com/sBJOoTm.png', true);
xhr.responseType = 'blob';
xhr.onload = function(e) {
if (this.status == 200) {
var blob = this.response;
document.getElementById("myImage").src = window.URL.createObjectURL(blob);
}
};
xhr.onerror = function(e) {
alert("Error " + e.target.status + " occurred while receiving the document.");
};
xhr.send();
<img id="myImage">
例(同じコード): http://jsfiddle.net/ysangkok/sJxXk/86/ FirefoxおよびChrome 25+で動作します。Opera Mini以外のすべてのブラウザ: http://caniuse.com/#search=Blob
var xmlhttp = new XMLHttpRequest();
xmlhttp.open('GET', 'http://RestServiceURL-Returns Image', true);
xmlhttp.setRequestHeader('Content-type','application/x-www-form-urlencoded');
xmlhttp.responseType = 'arraybuffer/blob';
xmlhttp.send();
3方向のBLOBイメージの作成
xmlhttp.onload = function() {
var blob = new Blob([this.response], {type: 'image/png'});
console.log(blob, blob.type, this.response, typeof this.response);
var image = document.getElementById('my-image');
1)image.src = window.URL.createObjectURL(blob);
2)var fileReader = new window.FileReader();
fileReader.readAsDataURL(blob);
fileReader.onloadend = function() {
image.src = fileReader.result;
}
3)var base64String = btoa(String.fromCharCode.apply(null, new Uint8Array(this.response)));
image.src = 'data:image/png;base64,'+base64String;
};
ArrayBufferを Blob にArrayBufferに変換
1)var dataView = new DataView(arrayBuffer);
var blob = new Blob([dataView], { type: mimeString });
2)fileReader.readAsArrayBuffer(blob);
var arrayBuffer;
fileReader.onload = function() {
arrayBuffer = this.result;
};
Janus Troelsen によって提案されたものと同じ解決策が追加されました...
注意!createObjectURL を使用する場合は、 revokeObjectURL の呼び出しを忘れないでください
// Load blob (promise)
function loadBlob( url ){
return new Promise( (resolve, reject) => {
const xhr = new XMLHttpRequest();
xhr.open('GET', url, true);
xhr.responseType = 'blob';
xhr.onload = () => resolve(xhr.response);
xhr.onerror = () => reject(xhr.statusText);
xhr.send();
});
}
// Create image from blob (createObjectURL)
function imageFromBlob( blob ){
const img = new Image();
img.onload = () => URL.revokeObjectURL(img.src);
img.src = URL.createObjectURL(blob);
return img;
}
// Create image from blob if loaded successfully
loadBlob('https://unsplash.it/960/540?random')
.then( blob => {
document.body.appendChild( imageFromBlob(blob) );
})
.catch( error => {
console.log('Could not load image');
})
// Alternate version adding promise to xhr
// if you like to trigger xhr.send() yourself
function xhrBlob(url){
const xhr = new XMLHttpRequest();
xhr.open('GET', url, true);
xhr.responseType = 'blob';
xhr.promise = new Promise((resolve, reject) => {
xhr.onload = () => resolve(xhr.response);
xhr.onerror = () => reject(xhr.statusText);
});
xhr.load = ( onsuccess = () => {}, onerror = () => {} ) => {
xhr.promise.then(onsuccess).catch(onerror);
xhr.send();
return xhr;
}
return xhr;
}
// Using load callbacks
xhrBlob('https://unsplash.it/960/540?random')
.load(
// on sussess
blob => {
document.body.appendChild( imageFromBlob(blob) );
},
// on error
error => {
console.log('Could not load image');
}
);
// Using promise (delayed)
const image = xhrBlob('https://unsplash.it/960/540?random');
// Promise handlers
image.promise
.then( blob => {
document.body.appendChild( imageFromBlob(blob) );
})
.catch( error => {
console.log('Could not load image');
});
// Load image (will trigger promise handlers)
setTimeout(image.load, 3000);
img {
width: 100%;
}