Skip to content

Instantly share code, notes, and snippets.

View mbcod3's full-sized avatar

Muhammad Bilal mbcod3

View GitHub Profile
@wuchengwei
wuchengwei / dataURL to blob and blob to dataURL
Last active November 8, 2024 03:55
dataURL to blob and blob to dataURL
//**dataURL to blob**
function dataURLtoBlob(dataurl) {
var arr = dataurl.split(','), mime = arr[0].match(/:(.*?);/)[1],
bstr = atob(arr[1]), n = bstr.length, u8arr = new Uint8Array(n);
while(n--){
u8arr[n] = bstr.charCodeAt(n);
}
return new Blob([u8arr], {type:mime});
}