如何在JavaScript中将Blob转换为文件


111

我需要将图像上传到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转换为文件以上传图像的方法。

有人可以帮我吗?


4
文件是Blob,只需加上meta属性即可,您一切顺利。
dandavis

1
上载Blob时的默认值是blob。因此,我首先提取了要裁剪的文件的名称,然后给了相同的名称,filename以便将裁剪后的文件上传到服务器中,方法是这样做form.append("blob",blob, filename);
跳过

@skip我下面的回答有帮助吗?是的,请将其标记为正确答案。
CBarr

Answers:


149

此函数将a转换Blob为a File,对我来说效果很好。

香草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");

3
我认为强制转换应该首先发生,因此您无需any在TypeScript中使用。请参阅示例。
styfle '16

2
这并非对所有目的都有效。将此“文件”添加到ajax调用中将无法正确设置文件名。
雅各布·波尔·理查德

12
这不是一个好的解决方案,产生的对象仍然是斑点。
czupe

4
只需添加b.__proto__ = File.prototype,和您的解决方案成为一个梦想,即使招数b instanceOf Filetrue
manuelnaranjo

3
基拉

204

您可以使用File构造函数:

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

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


2
这就是我想要的,一个区别是第一个参数实际上是一个数组,因此我将其用作:var file = new File([myBlob],“ name”);
Michaeldcooney

1
是。我也在寻找这种解决方案。Stamplay服务器无法从Blob对象获取文件名。所以我需要将其转换回文件。但是Safari不支持文件API ...现在回到0 :(
休侯

4
文件构造函数无法在PhantomJS中使用:TypeError: FileConstructor is not a constructor (evaluating 'new File([''], 'file.pdf', {'size': 1000, 'type': 'application/pdf'})')
bkimminich

7
Edge当前(2017-10-04)有一个错误,阻止使用此构造函数。developer.microsoft.com/en-us/microsoft-edge/platform/issues/...
里克·马丁斯

8
请确保添加文件类型,否则它将无法正常工作。新文件([myBlob],“名称”,{类型:“图像/ jpeg”,});
BernardA

34

约书亚·尼克松Joshua P Nixon)的回答是正确的,但我还必须设定上次修改日期。所以这是代码。

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

1534584790000是Unix时间戳“ GMT:星期六,2018年8月18日上午09点33分10秒


3
不能instanceof像接受的答案那样打破
马特·詹森

15

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

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

14

我的现代变体:

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

2
要将文件名添加到结果文件中,请使用:fd.set('a', blobData, 'filename')
joaoguerravieira

在以下情况下,它在某些IOS设备中失败:fd.set
唱歌

谢谢。这有效,现在我不必将Blob转换为文件。
xreyc_developer22,


2

打字稿

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

Java脚本

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

输出量

屏幕截图

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
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.