Displaying QR Code in PDF file, in Laravel

ぃ、小莉子 提交于 2020-01-16 18:22:13

问题


I'm facing a problem with displaying a QR code in a PDF file. When I try to display the QR code without PDF it works. The QR code is generated by https://github.com/SimpleSoftwareIO/simple-qrcode on to a pdf file generated by https://github.com/barryvdh/laravel-dompdf/tree/0.8.5

StudentController.php:

public function view_downlads($id){
    $pdf = PDF::loadView('Student.markscardpdf');
    return $pdf->stream();
}

Student/markscardpdf.blade.php:

{{ QrCode::size(200)->generate('hello') }}

来源:https://stackoverflow.com/questions/58887972/displaying-qr-code-in-pdf-file-in-laravel

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!