gpt4 book ai didi

javascript - 如何将选定的文件输入图像转换为 blob

转载 作者:行者123 更新时间:2023-12-05 09:36:56 25 4
gpt4 key购买 nike

我想使用文件输入来选择一些图像。在我的 HTML 代码中,我有这个

<input type="file" ref="file" name="images[]">

选择后,我想将每个选定的图像转换为一个 blob。我如何在我的 Vue 应用程序中实现这一点?我不确定我是否需要使用文件阅读器或者是否需要模拟 ajax 调用以将图像转换为 blob

最佳答案

你可以使用FileRead来读取文件数据
然后使用 BlobURL.createObjectURL 创建 blob url。

const fr = new FileReader()
const file = document.querySelector("input[name='images[]']").files[0]
fr.readAsArrayBuffer(file)
fr.onload = function() {
// you can keep blob or save blob to another position
const blob = new Blob([fr.result])

// url for download
const url = URL.createObjectURL(blob, {type: "image/png"});
const a = document.createElement("a")
a.href = url
a.download = "image"
a.click()
}

关于javascript - 如何将选定的文件输入图像转换为 blob,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64736200/

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