source: trunk/client/inc/hpdf5/spipu/html2pdf/examples/utf8.php@ 347

Last change on this file since 347 was 347, checked in by roby, 3 years ago

Aggiornamento per compatibilità con php7.4

File size: 893 bytes
Line 
1<?php
2/**
3 * Html2Pdf Library - example
4 *
5 * HTML => PDF converter
6 * distributed under the OSL-3.0 License
7 *
8 * @package Html2pdf
9 * @author Laurent MINGUET <webmaster@html2pdf.fr>
10 * @copyright 2017 Laurent MINGUET
11 */
12require_once dirname(__FILE__).'/../vendor/autoload.php';
13
14use Spipu\Html2Pdf\Html2Pdf;
15use Spipu\Html2Pdf\Exception\Html2PdfException;
16use Spipu\Html2Pdf\Exception\ExceptionFormatter;
17
18
19try {
20 $html2pdf = new Html2Pdf('P', 'A4', 'fr');
21
22 $content = file_get_contents(K_PATH_MAIN.'examples/data/utf8test.txt');
23 $content = '<page style="font-family: freeserif"><br />'.nl2br($content).'</page>';
24
25 $html2pdf->pdf->SetDisplayMode('real');
26 $html2pdf->writeHTML($content);
27 $html2pdf->output('utf8.pdf');
28} catch (Html2PdfException $e) {
29 $html2pdf->clean();
30
31 $formatter = new ExceptionFormatter($e);
32 echo $formatter->getHtmlMessage();
33}
Note: See TracBrowser for help on using the repository browser.