我正在尝试使用laravel 5.5中的mPdf - niklasravnsborg/laravel-pdf
生成pdf。但每次我以纵向模式获得pdf。
public function showCertificate()
{
$data = [ 'name' => 'John Doe', 'prize' => '1st Prize'];
$pdf = PDF::loadView('certificates.show',
$data,
[],
[
'title' => 'Certificate',
'orientation' => 'L'
]);
return $pdf->stream('certificate.pdf');
}
答案 0 :(得分:1)
我终于能够使用format
与A4-L
以及orientation
一起解决问题。我的工作代码如下。
public function showCertificate()
{
$data = [ 'name' => 'John Doe', 'prize' => '1st Prize'];
$pdf = PDF::loadView('certificates.show',
$data,
[],
[
'title' => 'Certificate',
'format' => 'A4-L',
'orientation' => 'L'
]);
return $pdf->stream('certificate.pdf');
}
我看到了issue并从那里推断出我的答案。