CodeIgniter Forums
Mpdf download failed on Chrome Android - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: CodeIgniter 4 (https://forum.codeigniter.com/forumdisplay.php?fid=28)
+--- Forum: CodeIgniter 4 Support (https://forum.codeigniter.com/forumdisplay.php?fid=30)
+--- Thread: Mpdf download failed on Chrome Android (/showthread.php?tid=78485)



Mpdf download failed on Chrome Android - edu.botero - 01-27-2021

Good morning there is a problem with the Mpdf library, it does not download a PDF document in Chrome from (ios and android).

In Chrome from pc if you download the document.
Code:
$mpdf = new \Mpdf\Mpdf([
            'mode' => 'utf-8',
            'format' => 'Letter',
            'margin_top' => 27,
            'margin_bottom' => 15,
            'orientation' => 'P'
        ]);
$mpdf->WriteHTML($html);
$mpdf->Output($file, 'D');



RE: Mpdf download failed on Chrome Android - iRedds - 01-27-2021

(01-27-2021, 11:41 AM)edu.botero Wrote: Good morning there is a problem with the Mpdf library, it does not download a PDF document in Chrome from (ios and android).

In Chrome from pc if you download the document.
Code:
$mpdf = new \Mpdf\Mpdf([
            'mode' => 'utf-8',
            'format' => 'Letter',
            'margin_top' => 27,
            'margin_bottom' => 15,
            'orientation' => 'P'
        ]);
$mpdf->WriteHTML($html);
$mpdf->Output($file, 'D');

Android 6
Chrome 88.0.4324.93
php 7.2
CI4 v 4.0.4
MPDF 8.x
works fine