从 readAsBinaryString 读取 AsDataURL?

发布于 2024-10-07 00:59:29 字数 474 浏览 3 评论 0原文

我想将图像作为二进制文件保存到用户本地主机以供将来参考,然后在以后从这个二进制文件生成一个 dataurl,问题是,它不起作用。

var reader = new FileReader();
reader.onload = function(file){
 this.file = file.target.result;
}.bind(this);
reader.readAsBinaryString(asset);

var reader = new FileReader();
reader.onload = function(image){
 this.image = image.target.result;
}.bind(this);
reader.readAsDataURL(this.file);

这可能看起来有点反常,但是图像数据被放入本地存储中,然后在稍后的日期(也许一分钟,也许一周)我希望能够从中生成图像。

有什么想法吗?谢谢!

I want to save an image as binary to the users localhost for future reference, then at a later date, generate a dataurl from this binary, problem is, it's not working.

var reader = new FileReader();
reader.onload = function(file){
 this.file = file.target.result;
}.bind(this);
reader.readAsBinaryString(asset);

var reader = new FileReader();
reader.onload = function(image){
 this.image = image.target.result;
}.bind(this);
reader.readAsDataURL(this.file);

This might seem a little peverse, but the image data is being put in localstorage, then at a later date (maybe a minute, maybe a week) I want to be able to generate an image from it.

Any ideas? Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

凉城 2024-10-14 00:59:29

最简单的方法可能是将其作为数据 URL 读取,并将其保存到 localStorage 中。但是,如果您确实需要二进制数据,那么您可以单独保存它们。然后,当您需要生成图像时,只需执行以下操作:

var img = document.createElement("img");
img.setAttribute("src", localStorage.imageDataURL);
document.body.appendChild(img);

It would probably be easiest to just read it as a data URL, and save that into localStorage. However, if you REALLY need the binary data, then you could just save them separately. Then, when you need to generate the image, just do something like:

var img = document.createElement("img");
img.setAttribute("src", localStorage.imageDataURL);
document.body.appendChild(img);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文