tcpdf-laravel
tcpdf-laravel copied to clipboard
Wrong characters when store PDF on disk.
Hi!
I did install "Space Grotesk" font. (https://fonts.google.com/specimen/Space+Grotesk) Using vendor/tecnickcom/tcpdf/tools/tcpdf_addfont.php.
When I did the request by Postman, all works fine. Look at image below.
This way works: $this->pdf->Output($this->nameFile, 'I');
But, when I use 'F', doesn't work.
This way, don't: $this->pdf->Output("/tmp/{$this->nameFile}", 'F');
What I did wrong?
Thanks.