barryvdh / laravel-snappy

Laravel Snappy PDF
MIT License
2.65k stars 292 forks source link

bad result when generate pdf with laravel queue #525

Closed hairullana closed 4 months ago

hairullana commented 11 months ago

fonts always bold and italic when generated pdf using laravel queue, I has been try put some style to remove the italic and bold, but it doesn't work I also put style other style like text transform uppercase, its work but not with bold and italic style I have to generate with laravel queue because of performance of my app

but when I generate pdf without laravel queue, the result is normal

image result with laravel queue

image result without laravel queue (normal as I want)

hairullana commented 4 months ago

I think when it's generate with no queue, it will be use ur default font on ur os so I added this on blade/pdf template

* {
       font-family: Arial, Helvetica, sans-serif
}