Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

j_watson's avatar

DomPDF - Image not found or type unknown

I recently published my project but everything works except the images on my pdf when viewing. I get this "Image not found or type unknown" error. I researched it but everything I tried so far doesn't work.

    <img src="{{url('/images/almond.jpg')}}" style="margin-left: auto; width: 40%;">
0 likes
4 replies
shariff's avatar

@j_watson You can try testing with the below things

1. Give width in pixel
2. Check if image exist or not 
3. change image src to public_path from url

<img src="{{public_path('/images/almond.jpg')}}" style="margin-left: auto; width: 100px;">

Please or to participate in this conversation.