如何添加CSS文件中MPDF(how to add css file in mpdf)

2019-07-22 02:29发布

我试图用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页面上以HTML通过Ajax。 但它给人的输出不来,我已经为它写CSS ..

请告诉我,现在怎么办?

Answer 1:

 <?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文件。



文章来源: how to add css file in mpdf
标签: php html ajax mpdf