我正在使用“ werneckbh / qr-code”,试图生成QR码并将其存储在PDF文件中。
我安装了所有依赖项。
现在我从他们的文档站点复制了路线
https://werneckbh.github.io/laravel-qr-code/text.html
shell=True
当我使用“ svg”格式时,它可以正常工作,但是我无法将“ svg”图像保存在PDF文件中。
任何建议都会有所帮助。
答案 0 :(得分:0)
就这样使用
public function qr_code()
{
$qrCode = QRCode::text('Laravel QR Code Generator!')->png();
}
只需运行该功能,就会生成QR码。
答案 1 :(得分:0)
我认为这应该有效
Route::get('qr-code/examples/text', function ()
{
return QRCode::text('Laravel QR Code Generator!')
->setOutfile('/path/to/email-qr-code.png')
->png();
});