10 lines
320 B
TypeScript
10 lines
320 B
TypeScript
|
export const dataURItoBlob = (dataURI: string) => {
|
||
|
const byteString = atob(dataURI.split(',')[1])
|
||
|
const ab = new ArrayBuffer(byteString.length)
|
||
|
const ia = new Uint8Array(ab)
|
||
|
for (let i = 0; i < byteString.length; i++) {
|
||
|
ia[i] = byteString.charCodeAt(i)
|
||
|
}
|
||
|
return new Blob([ab], { type: 'image/jpeg' })
|
||
|
}
|