Cpdf.php第3855行中的ErrorException:未定义的索引:at barryvdh / laravel-dompdf
作者:互联网
我正在使用laravel 5.2,dompdf在localhost上运行良好但是当移动到AWS时它会在Cpdf.php第3855行中显示ErrorException:未定义的索引:,在这一行(3855)中有字体变量.
示例代码:
$html = "<h2>Hello</h2>";
PDF::setOptions(['dpi' => 150, 'defaultFont' => 'sans-serif']);
$pdf = PDF::loadHTML($html)->setPaper('a4', 'landscape');
return $pdf->download('pdfview.pdf');
我无法设置’currentFont’=>由于barryvdh / laravel-dompdf中没有选项,因此在setOptions上显示’sans-serif’.那么如何解决currentFont问题呢?
Localhost – Windows – 运行正常.
AWS – Linux – 错误.
解决方法:
从存储/字体中删除dompdf_font_family_cache.php文件解决了错误
并让渲染器重新生成缓存.
标签:php,laravel-5,dompdf 来源: https://codeday.me/bug/20190828/1752436.html