query("SET NAMES utf8"); // instantiate and use the dompdf class $dompdf = new Dompdf(); $options = $dompdf->getOptions(); $dompdf->set_option('defaultFont', 'DejaVu Sans'); //$options->setChroot(''); $dompdf->setOptions($options); $html = file_get_contents($_REQUEST['fname']); //$html = mb_convert_encoding($html, 'HTML-ENTITIES', 'UTF-8'); $dompdf->loadHtml($html,'UTF-8'); // (Optional) Setup the paper size and orientation $dompdf->setPaper('A4', 'portrai'); // Render the HTML as PDF $dompdf->render(); //$filename = time().'.pdf'; //$full_path = 'export/pdf/'.$filename; //$url = 'http://rockhome.hu/'.$full_path; //echo $url; $dompdf->stream(time());