admin管理员组文章数量:1345060
I am working on an API which is fetching file data as arraybuffer
type. What my main question is there any of knowing what is the mime type of the file from the arraybuffer
as I need to convert it to BLOB
to view the file.
var file1 = new Blob([response], { type: file.type });
var fileURL = URL.createObjectURL(file1);
In the above code snippet, the response
is an arraybuffer
and the mime type I got is by storing it while uploading in a variable. But now the scenario is I don't have any mime type in my hand so I need a way to get it.
This is my response header:
And this is my response body sample:
Can anyone suggest me anything ?
I am working on an API which is fetching file data as arraybuffer
type. What my main question is there any of knowing what is the mime type of the file from the arraybuffer
as I need to convert it to BLOB
to view the file.
var file1 = new Blob([response], { type: file.type });
var fileURL = URL.createObjectURL(file1);
In the above code snippet, the response
is an arraybuffer
and the mime type I got is by storing it while uploading in a variable. But now the scenario is I don't have any mime type in my hand so I need a way to get it.
This is my response header:
And this is my response body sample:
Can anyone suggest me anything ?
Share Improve this question edited Nov 11, 2020 at 8:06 avishekdr asked Nov 11, 2020 at 7:12 avishekdravishekdr 1,0802 gold badges34 silver badges65 bronze badges 2- Couldn't you get it from the response headers? – Andrei Gătej Commented Nov 11, 2020 at 7:45
- @AndreiGătej please refer my updated question. I am not getting any mime type in response header – avishekdr Commented Nov 11, 2020 at 8:07
2 Answers
Reset to default 5Alternative to file-type
which seems to also use magic signature :
function getMimeTypeFromArrayBuffer(arrayBuffer) {
const uint8arr = new Uint8Array(arrayBuffer)
const len = 4
if (uint8arr.length >= len) {
let signatureArr = new Array(len)
for (let i = 0; i < len; i++)
signatureArr[i] = (new Uint8Array(arrayBuffer))[i].toString(16)
const signature = signatureArr.join('').toUpperCase()
switch (signature) {
case '89504E47':
return 'image/png'
case '47494638':
return 'image/gif'
case '25504446':
return 'application/pdf'
case 'FFD8FFDB':
case 'FFD8FFE0':
return 'image/jpeg'
case '504B0304':
return 'application/zip'
default:
return null
}
}
return null
}
inspired from https://medium./the-everyday-developer/detect-file-mime-type-using-magic-numbers-and-javascript-16bc513d4e1e
I found this package below which is very interesting. It parses the array buffer/blob/stream and try to guess its extension and mime type if it were a file. Obviously it is not exhaustive but you can find the extension list in the readme. Works on node and browser. Works for my needs though.
Here is the repo link : https://github./sindresorhus/file-type
本文标签: javascriptHow to get mime type of an array buffer objectStack Overflow
版权声明:本文标题:javascript - How to get mime type of an array buffer object? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743775576a2536912.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论