Hello im using dompdf to convert html into pdf in codeigniter 3, when i download pdf and open in pdf reader browser the pdf is shown.
But when i open pdf in adobe acrobat the pdf just show blank page pdf in adobe acrobat
This is my code:
$html = $this->load->view('viewhtml', $data, TRUE);
//echo $html;
$dompdf = new Dompdf();
$dompdf->loadHtml($html);
// (Optional) Setup the paper size and orientation
$dompdf->setPaper('A4', 'portrait');
// Render the HTML as PDF
$dompdf->render();
$dompdf->getCanvas()->get_cpdf()->setEncryption("1234");
// Output the generated PDF to Browser
$dompdf->stream("name.pdf", array("Attachment" => false));
exit(0);
I don't know what is wrong can someone help me.
EDIT: when I open pdf in different pdf reader, the pdf is shown
https://drive.google.com/file/d/1dE7Rdjv-KWCumj6MOAxereM7mmG3XwnX/view?usp=share_link
This is my pdf file if you want to see it in adobe acrobat. (pass: 1234)
Inspecting the provided example PDF one sees that the CIDSystemInfo entry for the DejaVuSans font embedded in the file is broken:
The values of Registry and Ordering should have been strings but here they are completely broken (even in an encrypted document strings have to be properly delimited).
This error has been fixed in the dompdf pull request 2114 in March 2020 which indeed is the fix for the dompdf issue 2060 pointed out by @Olivier in a comment to your question.
Thus, please update your dompdf version to a state that includes the above-mentioned pull request.