Skip to content

Instantly share code, notes, and snippets.

@molcik
Created April 29, 2017 05:26
Show Gist options
  • Save molcik/3f2d6c4b35f6a097f7f5cfcec6e03de8 to your computer and use it in GitHub Desktop.
Save molcik/3f2d6c4b35f6a097f7f5cfcec6e03de8 to your computer and use it in GitHub Desktop.
<?php
$html = '<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
</head>
<body>
<p style="font-family: Arial, sans-serif;">ěščřžýáíé</p>
</body>
</html>';
require_once dirname(__FILE__) . '/Libraries/dompdf/autoload.inc.php'; //$rendererLibrary;
$dompdf = new \Dompdf\Dompdf();
$dompdf->load_html($html, 'UTF-8');
$dompdf->set_paper('A4');
$dompdf->render();
file_put_contents('test.pdf', $dompdf->output());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment