![]() |
I need to know the recommended pdf manufacturer. - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5) +--- Forum: Best Practices (https://forum.codeigniter.com/forumdisplay.php?fid=12) +--- Thread: I need to know the recommended pdf manufacturer. (/showthread.php?tid=82178) |
I need to know the recommended pdf manufacturer. - yoshi - 06-21-2022 hello ![]() I am trying to trial and error the pdf maker. First up is 'tcpdf'. To pass the process through tcpdf, I need the raw html. However, the `view` function no longer returns html (codeigniter3 could return html using the `view` function). PHP Code: // basic, portrait and A4 canvas Next, the font issue. tcpdf has few Japanese fonts supported. Therefore, I would like to use google fonts via CDN for now. before I need to know how to get the raw html... RE: I need to know the recommended pdf manufacturer. - tgix - 06-21-2022 Hello, we are using the cid0* fonts included in TCPDF to create our PDF in CJK. Don't know if that will suit your needs. Getting a font ready for TCPDF requires a conversion process so I don't see how you may include a font from "Google fonts via CDN". RE: I need to know the recommended pdf manufacturer. - InsiteFX - 06-22-2022 PHP.net = file_get_contents As for the google font you can import them into your CSS file. The app folder I think is .htacess protected so you will need to work around that. If you use the view it should grab the html, it still works with the email, but your using the render. RE: I need to know the recommended pdf manufacturer. - abatrans - 06-23-2022 I use mPDF, install via composer mpdf/mpdf - I also find their documentation quite good. Adding fonts is a breeze. RE: I need to know the recommended pdf manufacturer. - InsiteFX - 06-24-2022 Should be in the pdf metadata. Smalot - PDF parser RE: I need to know the recommended pdf manufacturer. - yoshi - 07-22-2022 @tgix @InsiteFX @abatrans Thanks everyone, I was able to use the fonts in mPDF. RE: I need to know the recommended pdf manufacturer. - Shahh - 08-09-2022 I use mPDF. |