我正在使用 dompdf 生成 PDF 文件(数据来自数据库)。
$dompdf = new DOMPDF();
$dompdf->load_html($strHtml); // here $strHtml is the containt which I want to write in pdf
$dompdf->set_paper( array(0,0, 12 * 108, 12 * 72), "portrait" ); // 12" x 12"
$dompdf->render();
// The next call will store the entire PDF as a string in $pdf
$pdf = $dompdf->output();
// You can now write $pdf to disk, store it in a database or stream it
// to the client.
$pdfname = 'PDFNAME'
file_put_contents('pdf/'.$pdfname.'.pdf', $pdf);
现在在 $strHtml 变量中有许多 PDF 页面,并且所有页面都以页面类型 portait 生成。
现在我想创建所有不同类型的页面,例如第 1 页为纵向,第 2 页为横向,第 3 页为横向等。
我怎么解决这个问题?