我已經使用MPDF將其轉換爲PDF, 但問題是我不能包含樣式表文件。將樣式表文件包含在PHP中的MPDF轉換中
實施例:
include("../mpdf.php");
$mpdf=new mPDF('c');
$mpdf->SetDisplayMode('fullpage');
// LOAD a stylesheet
$stylesheet = file_get_contents('mpdfstyleA4.css');
$mpdf->WriteHTML($stylesheet,1);
$mpdf->WriteHTML($html);
$mpdf->Output();
我用上面的代碼,但我不能看到的樣式的效果。 有誰知道更好的方式來包含樣式?