File size: 518 Bytes
6821e3e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
export function dataUriToBlob(dataURI = "", defaultContentType = ""): Blob {
dataURI = dataURI.replace(/^data:/, '');
const type = dataURI.match(/(?:image|application|video|audio|text)\/[^;]+/)?.[0] || defaultContentType;
const base64 = dataURI.replace(/^[^,]+,/, '');
const arrayBuffer = new ArrayBuffer(base64.length);
const typedArray = new Uint8Array(arrayBuffer);
for (let i = 0; i < base64.length; i++) {
typedArray[i] = base64.charCodeAt(i);
}
return new Blob([arrayBuffer], { type });
} |