Skip to content
Loading
How to Embed PDF data (Base 64) in angular 6 component
  • Jenith Thakkar
    Instead of this 
    1. this.PathReportString = (this.sanitizer.bypassSecurityTrustResourceUrl(result) as any).changingThisBreaksApplicationSecurity;    
    Try this
    1. this.PathReportString = this.sanitizer.bypassSecurityTrustResourceUrl('data:image/jpg;base64,' +result);    
    Thank you