以下是我用来生成pdf文件的功能。我正在加载github存储库文档中指定的所有必需文件和类。
public function get_invoice_converted_to_pdf(){
try {
// reference the Dompdf namespace
// instantiate and use the dompdf class
$dompdf = new Dompdf();
$dompdf->set_option('isHtml5ParserEnabled', true);
$dompdf->loadHtml('<p>hello world</p>');
// (Optional) Setup the paper size and orientation
$dompdf->setPaper('A4', 'landscape');
// Render the HTML as PDF
$dompdf->render();
// Output the generated PDF to Browser
echo $dompdf->stream();
} catch (Exception $e) {
echo $e->getMessage();
}
}
它生成pdf文件,但在那个pdf文件中,我看到的只是HTML代码。不是该HTML的渲染输出。