I am trying to use OLD English font in Dompdf with Laravel.,
I have inserted the font in laravel view. But it seems when generating the pdf It is not working.I tried editing dompdf >vendor >.../dompdf_font_family_cache.dist.php
File.But no luck,
Can anyone Suggest a Solution?
Thanks In Advance.
In your view/html add @font-face rules by using the storage_path method Laravel provides.
Add font-family rules to your css as seen below
Hope this helps.
I was trying to include custom fonts too. I included the font in the view (using @font-face declaration), but when I tried to generate the pdf, it gave me an ErrorException in AdobeFontMetrics.php. I resolved by creating a fonts folder in the storage folder of your laravel project. So now I have:
I hope it will help