“base64 из файла” Ответ

Преобразовать строку base64 в тип файла

const url = 'data:image/png;base6....';
fetch(url)
  .then(res => res.blob())
  .then(blob => {
    const file = new File([blob], "File name",{ type: "image/png" })
  })
abubakar hassan

base64 из файла

  convertFile(file: File): Observable<string> {
    const result = new ReplaySubject<string>(1);
    const reader = new FileReader();
    reader.readAsBinaryString(file);
    reader.onload = (event) => result.next(btoa(reader.result.toString()));
    return result;
  }
	
this.convertFile(event.target.files[0]).subscribe(base64 => {
	this.base64Output = base64;
});
/// NOTE ///
// The event.target.files is just the File Object e.g. from a
// <input type="file"> form
// you can also create a file with the following command:
var f = new File([""], "filename");


JBTheOneAndOnly

Ответы похожие на “base64 из файла”

Вопросы похожие на “base64 из файла”

Больше похожих ответов на “base64 из файла” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования