我尝试从http URL生成PDF。我遵循了https://mpdf.github.io/real-life-examples/pdf-from-every-page-of-website.html
上的教程$html = file_get_contents($url);
$mpdf = new \Mpdf\Mpdf(['tempDir' => '/temp/pdf', 'format' => 'A4', 'mode' => 'utf-8']);
$mpdf->setBasePath($url);
$mpdf->WriteHTML($html);
$mpdf->Output(__DIR__ . '/../temp/pdf/test.pdf','F');
我得到的是一个2202个空白页面的PDF。
编辑: 如果我在html文件中删除对 bootstrap.min.css (引导4)的引用,则内容的格式不正确,但是显示正确(仅2页)
答案 0 :(得分:0)
mPDF不支持引导程序,我相信2202页来自file_get_contents('bootstrap.min.css')