我正在尝试在我的Symfony4项目中使用KnpSnappyBundle。实际上,我可以通过将命令行与wkhtmltopdf一起使用pdf来翻译我的树枝,但是当我使用KnpSnappy时,生成的文件已损坏...这是我在控制器中的调用:
$html = $this->renderView('metier/fiche/fiche.html.twig', [
'metier' => $this->getFirstApiResult($metierCall),
'softskills' => $this->getSecondApiResult($skillsCall)->skills,
]);
return new PdfResponse(
$this->get('knp_snappy.pdf')->getOutputFromHtml($html),
'file.pdf'
);
询问是否需要更多详细信息。 谢谢。 :)