我有两个base64
用 PNG 编码,我需要使用Resemble.JS比较它们
我认为最好的方法是PNG
使用 . 将 's 转换为文件对象fileReader
。我该怎么做?
我有两个base64
用 PNG 编码,我需要使用Resemble.JS比较它们
我认为最好的方法是PNG
使用 . 将 's 转换为文件对象fileReader
。我该怎么做?
方式1:仅适用于dataURL,不适用于其他类型的url。
function dataURLtoFile(dataurl, filename) {
var arr = dataurl.split(','), mime = arr[0].match(/:(.*?);/)[1],
bstr = atob(arr[1]), n = bstr.length, u8arr = new Uint8Array(n);
while(n--){
u8arr[n] = bstr.charCodeAt(n);
}
return new File([u8arr], filename, {type:mime});
}
//Usage example:
var file = dataURLtoFile('data:image/png;base64,......', 'a.png');
console.log(file);
方式 2:适用于任何类型的 url,(http url、dataURL、blobURL 等......)
//return a promise that resolves with a File instance
function urltoFile(url, filename, mimeType){
mimeType = mimeType || (url.match(/^data:([^;]+);/)||'')[1];
return (fetch(url)
.then(function(res){return res.arrayBuffer();})
.then(function(buf){return new File([buf], filename, {type:mimeType});})
);
}
//Usage example:
urltoFile('data:image/png;base64,......', 'a.png')
.then(function(file){
console.log(file);
})
两者都适用于 Chrome 和 Firefox。
您可以Blob
从您的 base64 数据创建一个,然后读取它asDataURL
:
var img_b64 = canvas.toDataURL('image/png');
var png = img_b64.split(',')[1];
var the_file = new Blob([window.atob(png)], {type: 'image/png', encoding: 'utf-8'});
var fr = new FileReader();
fr.onload = function ( oFREvent ) {
var v = oFREvent.target.result.split(',')[1]; // encoding is messed up here, so we fix it
v = atob(v);
var good_b64 = btoa(decodeURIComponent(escape(v)));
document.getElementById("uploadPreview").src = "data:image/png;base64," + good_b64;
};
fr.readAsDataURL(the_file);
完整示例(包括垃圾代码和控制台日志):http: //jsfiddle.net/tTYb8/
或者,您可以使用.readAsText
,它工作正常,而且更优雅.. 但由于某种原因,文本听起来不正确;)
fr.onload = function ( oFREvent ) {
document.getElementById("uploadPreview").src = "data:image/png;base64,"
+ btoa(oFREvent.target.result);
};
fr.readAsText(the_file, "utf-8"); // its important to specify encoding here
完整示例:http: //jsfiddle.net/tTYb8/3/
以前的答案对我不起作用。
但这非常有效。 将数据 URI 转换为文件,然后附加到 FormData
您可以将 axios、async/await 与 TypeScript 一起使用。
const dataUrlToFile = async (dataUrl: string, fileName: string, mimeType: string): Promise<File> => {
const res = await axios(dataUrl);
const blob: Blob = res.data;
return new File([blob], fileName, { type: mimeType });
}
使用示例
const TEST_IMG_BASE64 = 'data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7'
const TEST_IMG: File = await dataUrlToFile(TEST_IMG_BASE64, 'test.gif', 'image/gif')