“Konversi String ke File Angular” Kode Jawaban

Konversi String ke File Angular

const base64 = '...';
const imageName = 'name.png';
const imageBlob = this.dataURItoBlob(base64);
const imageFile = new File([imageBlob], imageName, { type: 'image/png' });
pullo bah pubg gaming

Konversi String ke File Angular

dataURItoBlob(dataURI) {
   const byteString = window.atob(dataURI);
   const arrayBuffer = new ArrayBuffer(byteString.length);
   const int8Array = new Uint8Array(arrayBuffer);
   for (let i = 0; i < byteString.length; i++) {
     int8Array[i] = byteString.charCodeAt(i);
   }
   const blob = new Blob([int8Array], { type: 'image/png' });    
   return blob;
}
pullo bah pubg gaming

Jawaban yang mirip dengan “Konversi String ke File Angular”

Pertanyaan yang mirip dengan “Konversi String ke File Angular”

Lebih banyak jawaban terkait untuk “Konversi String ke File Angular” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya