我正在尝试在我的 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'
);
询问您是否需要更多详细信息。谢谢。:)