使用laravel-snappy实现html转pdf

1.SSL resources not loading

这个问题一般都是`config/snappy.php里`binary`配置的不正确导致的,
解决办法安装最新版`wkhtmltoimage-amd64`和`wkhtmltopdf-amd64`,正确配置`binary`路径就行

2.中文乱码

  • 解决办法,在页面上导入雅黑字体,并且在/usr/share/fonts/truetype/路径下放入字体msyh.ttf
    @font-face {
            font-family: 'msyh';
            font-style: normal;
            font-weight: normal;
            src: url({{public_path('msyh.ttf')}}) format('truetype');
        }