PDFファイルの生成にdompdfを使用しています(データはデータベースから取得されます)。
$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 ページなど、異なるタイプのすべてのページを作成したいと考えています。
どうすればこの問題を解決できますか?