我使用“knp_snappy.pdf”与php一起创建pdf文件。
$template = $this->renderView('DemoProductBundle:pdf:template.html.twig', array('productData' => $productData));
$headerTemplate = $this->renderView('DemoProductBundle:pdf:header.html.twig');
$footerTemplate = $this->renderView('DemoProductBundle:pdf:footer.html.twig');
$knpSnappy = $this->get('knp_snappy.pdf');
return new Response($knpSnappy->getOutputFromHtml($template, array(
'page-size' => 'A4',
'header-html' => $headerTemplate,
'footer-html' => $footerTemplate,
'margin-top' => '0'
)),
200,
array(
'Content-Type' => 'application/pdf',
'Content-Disposition' => 'attachment; filename="file.pdf"'
)
);
标题内容可以显示在主要内容之上,但页脚内容不能显示。但如果我使用AI软件打开这个pdf文件,我可以在主板下面找到页脚内容。
我的代码出了什么问题?
另一个问题,如果我尝试创建多个pdf文件,主要内容的位置将会改变。