Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
を使用して 2 ページ目 (2 ページ目) のページ サイズを変更する方法を教えてくださいmpdf。私のページ サイズは A4 (mpdfデフォルト) です。
mpdf
テーブルの動的コンテンツであるため、レポートの 2 ページ目の幅を動的に変更したい (例: 列数が未定義)
最初のページの終了位置がわかっている場合は、AddPage() 関数を使用して次のページの書式を変更できます。
$mpdf=new mPDF(); $mpdf->WriteHTML('Your Introduction'); $mpdf->AddPage('L','','','','',50,50,50,50,10,10); $mpdf->WriteHTML('Your Book text'); $mpdf->AddPage('P','','','','',50,50,50,50,10,10);