5
我正在使用Symfony2。當使用此代碼生成的PDF文件:使用Knp Snappy生成PDF文件時出現錯誤字符
public function printAction($id)
{
// initialiser $demande
$html = $this->renderView('PFETimeBundle:Demande:print.html.twig',
array('demande'=> $demande)
);
return new Response(
$this->get('knp_snappy.pdf')->getOutputFromHtml($html),
200,
array(
'Content-Type' => 'application/pdf',
'Content-Disposition' => 'attachment; filename="file.pdf"'
)
);
}
我得到這個內容(法文字符出現在壞人的角色):
非常感謝你。它爲我工作。 – mehdi
np,很高興幫助! –
謝謝你。你已經爲我節省了大量的時間去了解如何傳遞選項以及通過哪些選項來設置'encoding' –