如何将通过 HTML2PDF 生成的 pdf 文件的页面方向更改为横向...?默认情况下,它以纵向格式打开。我已经在 html2pdf.class 中更改了它,但没有任何改变。请帮助我..
这是php代码:
require('../../includes/html2pdf/html2fpdf.php');
$pdf=new HTML2FPDF('L','mm','A3');
$pdf->AddPage();
$pdf->setFont("arial",'',8);
$pdf->WriteHTML($data);
$pdf->Output("outstanding.pdf","I");