我正在使用https://github.com/SimpleSoftwareIO/simple-qrcode这个程序包在laravel中实现qrcode。请帮助我在我的qrcode中实现URL。 我的代码是
<img src="data:image/png;base64, {!! base64_encode(QrCode::format('png')->merge('assets/logo/logo.png', 0.3, true)
->size(200)->errorCorrection('H')
->generate('http://localhost/accept/')) !!} ">
但是它在Qrcode Scanner中显示为文本格式而不是URL格式。 在此先感谢