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等,以及指定頁面的方向為橫向或縱向。