PHP DOMPDF如何设置页面大小

avatar
作者
筋斗云
阅读量:0

PHP DOMPDF可以通过设置页面大小参数来指定生成PDF文件的页面尺寸。可以通过以下方式设置页面大小:

// Include the DOMPDF library require 'dompdf/autoload.inc.php';  // Create an instance of the DOMPDF class $dompdf = new Dompdf\Dompdf();  // Set the paper size and orientation $dompdf->set_paper('A4', 'portrait');  // Load HTML content $html = file_get_contents('example.html');  // Convert HTML to PDF $dompdf->load_html($html); $dompdf->render();  // Output the generated PDF $dompdf->stream('output.pdf'); 

在上述示例中,通过set_paper()方法设置页面尺寸为A4并指定为纵向方向。可以根据需要将页面尺寸设置为其他尺寸,如Letter、Legal等,以及指定页面的方向为横向或纵向。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!