gpt4 book ai didi

javascript - 使用文件内容创建图像

转载 作者:行者123 更新时间:2023-12-03 12:38:12 26 4
gpt4 key购买 nike

我有一个拖放框,用户可以将图像放入其中。我想在上传之前创建预览。我有图像的内容,其中包含数百行类似这样的内容:

png contents

有没有办法显示图像及其内容?我当前的读取和分配代码:

var reader = new FileReader();
reader.readAsText(uploadedfile[0]);
reader.onload = function (e) {
filecontents = this.result;
reader.abort();
var image = new Image();
image.src = filecontents;
$('#drop p').html('<img src="'+image.src+'"/>');
}

最佳答案

这样做非常简单高效,不需要 FileReader,假设 uploadedfileFile 的“数组” > Blob :

var image = new Image();
image.src = URL.createObjectURL(uploadedfile[0]);

关于javascript - 使用文件内容创建图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23635106/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com