-

-

CLIENT:

MOB:

EMAIL:


SITE DETAILS:

TITLE: PID:

Planning Zone:

Date:

set('isRemoteEnabled', true); // allow CDN CSS and images $options->set('isHtml5ParserEnabled', true); $options->setChroot(__DIR__); $dompdf = new Dompdf($options); $dompdf->loadHtml($html, 'UTF-8'); // Custom paper size in points. 1 mm = 2.83465 pt $MM = 2.83465; $widthPt = 320 * $MM; $heightPt = 239 * $MM; $dompdf->setPaper([0, 0, $widthPt, $heightPt], 'landscape'); $dompdf->render(); // Nice filename fallback if pieces are missing $file = trim(($drg ?? 'label')) . ' - Manilla Folder Label.pdf'; // true => force download. set to false to open in browser $dompdf->stream($file, ['Attachment' => true]); exit; } ?>