![]() |
How do i use Codeigniter or any existing library to generate pdf files using a blank pdf file - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Libraries & Helpers (https://forum.codeigniter.com/forumdisplay.php?fid=22) +--- Thread: How do i use Codeigniter or any existing library to generate pdf files using a blank pdf file (/showthread.php?tid=11834) Pages:
1
2
|
How do i use Codeigniter or any existing library to generate pdf files using a blank pdf file - El Forum - 04-11-2011 [eluser]Paul Hernández[/eluser] I have fixed the load library problem and I had to bump up the memory limit in the php.ini file, now I'm having other problems: - Message: Use of undefined constant K_CELL_HEIGHT_RATIO - assumed 'K_CELL_HEIGHT_RATIO' - Message: Cannot modify header information - headers already sent by (output started at /home/pauldj54/Desktop/pdftest/system/core/Exceptions.php:170) I'll check your link and others forum post. Thanks for your time! How do i use Codeigniter or any existing library to generate pdf files using a blank pdf file - El Forum - 04-11-2011 [eluser]InsiteFX[/eluser] PHP ROS PDF Download InsiteFX How do i use Codeigniter or any existing library to generate pdf files using a blank pdf file - El Forum - 11-07-2013 [eluser]Unknown[/eluser] [quote author="outrage" date="1222336284"]Kinda goes something like this: application libraries fpdf.php fpdf_tpl.php fpdi.php fpdi_pdf_parser.php pdf_context.php pdf_parser.php wrapper_functions.php Controller Code: $this->load->library('fpdf'); Don't forget the fonts folder: Add this to config.php Code: $config['fonts_path']= "resources/font/"; Works great for me, hope this helps.[/quote] Outrage - Though your post was made many years ago, that was the key to me figuring out how to use CodeIgniter along with FPDF and FPDI. Thanks a bunch !! I am now able to customize PDF documents with CI and FPDI. Thanks. |