%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
<?php defined('BASEPATH') OR exit('No direct script access allowed'); /** * CodeIgniter PDF Library * * Generate PDF's in your CodeIgniter applications. * * @package CodeIgniter * @subpackage Libraries * @category Libraries * @author Chris Harvey * @license MIT License * @link https://github.com/chrisnharvey/CodeIgniter-PDF-Generator-Library */ require_once(dirname(__FILE__) . '/dompdf/dompdf_config.inc.php'); class Pdf extends DOMPDF { /** * Get an instance of CodeIgniter * * @access protected * @return void */ protected function ci() { return get_instance(); } /** * Load a CodeIgniter view into domPDF * * @access public * @param string $view The view to load * @param array $data The view data * @return void */ public function load_view($view, $data = array()) { $html = $this->ci()->load->view($view, $data, TRUE); $this->load_html($html); } }