Created
April 29, 2017 05:26
-
-
Save molcik/3f2d6c4b35f6a097f7f5cfcec6e03de8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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