使用HTML2PDF类进行html到pdf的转换

时间:2015-09-17 08:15:09

标签: php html pdf

我正在尝试使用HTML2PDF类将一些html内容转换为pdf。但我收到以下错误

  

致命错误:未捕获ERROR n°4
文件:   /html2pdf/_class/parsingHtml.class.php
行:120

HTML代码   无效,标签不会以有序的方式关闭。

我正在使用的代码如下:

<?php
        require_once('html2pdf.class.php');
        $filename = 'test.html';
        $report=file_get_contents($filename);
        $content = '';
        $content .="<page  footer='page' backtop='20%' backbottom='13%' backleft='1%' backright='1%'>";
        $content .= $report;
        $content .="</page>";

        ob_get_clean();
        $pdf = new HTML2PDF('P','A4','en','true','UTF-8');
        $pdf->WriteHTML($content,false);
        ob_end_clean();
        $pdf->Output('Demographic_Analysis.pdf');
        exit;
?>

请帮忙

0 个答案:

没有答案