[ Index ] |
PHP Cross Reference of Unnamed Project |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * HTML2PDF Librairy - example 4 * 5 * HTML => PDF convertor 6 * distributed under the LGPL License 7 * 8 * @author Laurent MINGUET <webmaster@html2pdf.fr> 9 * 10 * isset($_GET['vuehtml']) is not mandatory 11 * it allow to display the result in the HTML format 12 */ 13 14 require_once(dirname(__FILE__).'/../html2pdf.class.php'); 15 16 // get the HTML 17 $content = file_get_contents(dirname(__FILE__).'/../_tcpdf_'.HTML2PDF_USED_TCPDF_VERSION.'/cache/utf8test.txt'); 18 $content = '<page style="font-family: freeserif"><br />'.nl2br($content).'</page>'; 19 20 // convert to PDF 21 try 22 { 23 $html2pdf = new HTML2PDF('P', 'A4', 'fr'); 24 $html2pdf->pdf->SetDisplayMode('real'); 25 $html2pdf->writeHTML($content, isset($_GET['vuehtml'])); 26 $html2pdf->Output('utf8.pdf'); 27 } 28 catch(HTML2PDF_exception $e) { 29 echo $e; 30 exit; 31 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Tue Mar 17 22:47:18 2015 | Cross-referenced by PHPXref 0.7.1 |