9

如何将通过 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");
4

3 回答 3

5

用作L构造函数参数应该可以正常工作。不要乱搞类内部。

这是我唯一的代码,它工作正常。尝试使用最新版本:HTML2PDF

// convert to PDF
require_once('../../vendor/html2pdf_v4.03/html2pdf.class.php');
try
{
    $html2pdf = new HTML2PDF('L', 'A4', 'en');
    $html2pdf->setDefaultFont('Arial');
    $html2pdf->writeHTML($html, false);
    $html2pdf->Output('output.pdf', 'D');
}
catch(HTML2PDF_exception $e) {
    echo $e;
    exit;
}
于 2013-07-11T18:30:39.387 回答
2

Or you can add orientation on tag.

<page orientation="landscape" format="A5" > Landscape </page>

Check out http://demo.html2pdf.fr/examples/pdf/exemple04.pdf for more example.

于 2014-06-04T03:10:32.227 回答
1

这个解决方案也很好,它在文档中:

var element = document.getElementById('element-to-print');
var opt = {
  margin:       1,
  filename:     'myfile.pdf',
  image:        { type: 'jpeg', quality: 0.98 },
  html2canvas:  { scale: 2 },
  jsPDF:        { unit: 'in', format: 'letter', orientation: 'portrait' }
};

// New Promise-based usage:
html2pdf().set(opt).from(element).save();

// Old monolithic-style usage:
html2pdf(element, opt);
于 2019-04-22T18:00:09.213 回答