“base64 a imagen angular” Código de respuesta

convertir una imagen en base64 en angular

// works like charm in pdfMake and angular
//You can use this function to create generate a base64 image

        toDataURL = async (url) => {
        console.log("Downloading image...");
        var res = await fetch(url);
        var blob = await res.blob();
    
        const result = await new Promise((resolve, reject) => {
          var reader = new FileReader();
          reader.addEventListener("load", function () {
            resolve(reader.result);
          }, false);
    
          reader.onerror = () => {
            return reject(this);
          };
          reader.readAsDataURL(blob);
        })
    
        return result
      };

// and then call it like this

    imageSrcString = await this.toDataURL(imageSrc)
Vivacious Vendace

base64 a imagen angular

this.imagePath = this._sanitizer.bypassSecurityTrustResourceUrl('data:image/jpg;base64,' 
                 + toReturnImage.base64string);
Grieving Gazelle

base64 a imagen angular

constructor(private _sanitizer: DomSanitizer) { }
Grieving Gazelle

base64 a imagen angular

<img [src]="imagePath">
Grieving Gazelle

base64 a imagen angular

import { DomSanitizer } from '@angular/platform-browser';
Grieving Gazelle

Respuestas similares a “base64 a imagen angular”

Preguntas similares a “base64 a imagen angular”

Más respuestas relacionadas con “base64 a imagen angular” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código