如何在JavaScript中将Blob转换为File

时间:2014-11-26 21:27:36

标签: javascript node.js file-upload blob

我需要将图像上传到NodeJS服务器到某个目录。我正在使用connect-busboy节点模块。

我使用以下代码将dataURL图像转换为blob:

dataURLToBlob: function(dataURL) {
    var BASE64_MARKER = ';base64,';
    if (dataURL.indexOf(BASE64_MARKER) == -1) {
        var parts = dataURL.split(',');
        var contentType = parts[0].split(':')[1];
        var raw = decodeURIComponent(parts[1]);
        return new Blob([raw], {type: contentType});
    }
    var parts = dataURL.split(BASE64_MARKER);
    var contentType = parts[0].split(':')[1];
    var raw = window.atob(parts[1]);
    var rawLength = raw.length;
    var uInt8Array = new Uint8Array(rawLength);
    for (var i = 0; i < rawLength; ++i) {
        uInt8Array[i] = raw.charCodeAt(i);
    }
    return new Blob([uInt8Array], {type: contentType});
}

我需要一种方法将blob转换为文件以上传图像。

有人可以帮我吗?

9 个答案:

答案 0 :(得分:121)

您可以使用File构造函数:

var file = new File([myBlob], "name");

根据w3规范,这将把blob包含的字节附加到新File对象的字节,并创建具有指定名称的文件 http://www.w3.org/TR/FileAPI/#dfn-file

答案 1 :(得分:102)

此功能可将Blob转换为File,对我来说效果很好。

Vanilla JavaScript

function blobToFile(theBlob, fileName){
    //A Blob() is almost a File() - it's just missing the two properties below which we will add
    theBlob.lastModifiedDate = new Date();
    theBlob.name = fileName;
    return theBlob;
}

TypeScript (正确的打字)

public blobToFile = (theBlob: Blob, fileName:string): File => {
    var b: any = theBlob;
    //A Blob() is almost a File() - it's just missing the two properties below which we will add
    b.lastModifiedDate = new Date();
    b.name = fileName;

    //Cast to a File() type
    return <File>theBlob;
}

<强>用法

var myBlob = new Blob();

//do stuff here to give the blob some data...

var myFile = blobToFile(myBlob, "my-image.png");

答案 2 :(得分:9)

打字稿

public blobToFile = (theBlob: Blob, fileName:string): File => {       
    return new File([theBlob], fileName, { lastModified: new Date().getTime(), type: theBlob.type })
}

JavaScript

function blobToFile(theBlob, fileName){       
    return new File([theBlob], fileName, { lastModified: new Date().getTime(), type: theBlob.type })
}

输出

screenshot

File {name: "fileName", lastModified: 1597081051454, lastModifiedDate: Mon Aug 10 2020 19:37:31 GMT+0200 (Eastern European Standard Time), webkitRelativePath: "", size: 601887, …}
lastModified: 1597081051454
lastModifiedDate: Mon Aug 10 2020 19:37:31 GMT+0200 (Eastern European Standard Time) {}
name: "fileName"
size: 601887
type: "image/png"
webkitRelativePath: ""
__proto__: File

答案 3 :(得分:8)

我的现代变体:

function blob2file(blobData) {
  const fd = new FormData();
  fd.set('a', blobData);
  return fd.get('a');
}

答案 4 :(得分:8)

Joshua P Nixon 的答案是正确的,但我还必须设置上次修改日期。这是代码。

var file = new File([blob], "file_name", {lastModified: 1534584790000});

1534584790000 是“ 格林尼治标准时间:2018年8月18日,星期六,9:33:10 ”的unix时间戳

答案 5 :(得分:2)

要让我工作,我必须明确提供类型,尽管这样做是将其包含在blob中:

const file = new File([blob], 'noname', { type: blob.type })

答案 6 :(得分:1)

FileSaver.js github项目上使用FileSaver.js

saveAs()在本机不支持它的浏览器中实现{{1}} FileSaver接口。

答案 7 :(得分:0)

这个问题困扰了我好几个小时。 我正在使用Nextjs,并尝试将画布转换为图像文件

我只是使用对方的解决方案,但是创建的文件为

因此,如果这是您的问题,则应在文件对象中提及 size 属性。

new File([Blob], `my_image${new Date()}.jpeg`, {
  type: "image/jpeg",
  lastModified: new Date(),
  size: 2,
});

只需添加它,它的值并不重要。

答案 8 :(得分:-1)

我已使用FileSaver.js将Blob保存为文件。

这是仓库:https://github.com/eligrey/FileSaver.js/

用法:

import { saveAs } from 'file-saver';

var blob = new Blob(["Hello, world!"], {type: "text/plain;charset=utf-8"});
saveAs(blob, "hello world.txt");

saveAs("https://httpbin.org/image", "image.jpg");