在HTML2FPDF

时间:2016-04-14 13:39:10

标签: php html

有谁知道如何在HTML2FPDF PHP库中包含CSS文件。我能够生成PDF文件,但样式不包括在内。目前,我将样式表附加在HTML字符串($ my_html)的标题中。

这是我的代码。

 $pdf = new HTML2FPDF();
            $pdf->AddPage();
            $pdf->WriteHTML($my_html);
            $pdf->Output('pdffile_.pdf');

1 个答案:

答案 0 :(得分:0)

查看Html2fpdf documentantion我没有找到任何方法将额外的文件包含到pdf输出文档中,所以我认为最好的解决方案是将它连接到$my_html变量。参见:

$my_html .= "<style>\n " . file_get_contents('path/to/style.css') . "</style>";

$pdf = new HTML2FPDF();
           $pdf->AddPage();
           $pdf->WriteHTML($my_html);
           $pdf->Output('pdffile_.pdf');