在html中显示字节数组而不转换为Base64字符串

时间:2016-08-21 10:08:46

标签: javascript html html5 base64 client-side

我知道在转换为Base64字符串后可以将字节数组显示为html中的图像,如下所述:Here

是否可以在html中将原始字节数组显示为Image而不转换为字符串?

1 个答案:

答案 0 :(得分:0)

window.URL.createObjectURL Method直接为字节数组图像创建URL而不进行转换

var link = window.URL.createObjectURL(data);
var image = document.getElementById("liveBox");
image.src = link;