Good morning, I use Angular, Spring and AWS S3 for an application in which I display png, jpg, pdf files... I retrieve an Object from the backend which contains a Byte[], however I want to display a .pdf type file I get this error.
<img width="800px" [src]="'data:image/pdf;base64,'+ ressourceUI.bytes" alt="Image">
I also tried with this.
<img width="800px" [src]="'data:application/pdf;base64,'+ ressourceUI.bytes" alt="Image">
Its a same problem.
Here is the error on the browser side


