我正在尝试使用mpdf将html转换为pdf。问题是我无法将CSS应用于pdf文件。
这是我的php代码:
<?php $html = $divPrint; $mpdf=new mPDF(); $stylesheet = file_get_contents('pdf.css'); $mpdf->WriteHTML($stylesheet,1); $mpdf->WriteHTML($html,2); $mpdf->Output(); exit; ?>
它在做什么是在我的此php页面上通过ajax提取html。但是它给出的输出并不带有我为此编写的css。
请告诉我现在要做吗?
<?php $html = $divPrint; include('mpdf.php'); // including mpdf.php $mpdf=new mPDF(); $stylesheet = file_get_contents('pdf.css'); // external css $mpdf->WriteHTML($stylesheet,1); $mpdf->WriteHTML($html,2); $mpdf->Output(); exit; ?>
首先分配您的html,$html然后包含 mpdf.php 文件。
$html