yeejiawei / laravel-qrcode
Laravel 对 phpqrcode 的包装
0.1.0
2023-02-16 13:44 UTC
Requires
- illuminate/support: ^9.19
This package is auto-updated.
Last update: 2024-09-16 17:16:56 UTC
README
安装
您可以通过 composer 安装此包
composer require yeejiawei/laravel-qrcode
使用方法
use \Yeejiawei\LaravelQrcode\LaravelQrcode; $qr = LaravelQrcode::create('test'); $qr->setErrorCorrectionLevel(ErrorCorrectionLevel::QR_ECLEVEL_M); // default is ErrorCorrectionLevel::QR_ECLEVEL_M $qr->setSize(100); // Set size of the qr code $qr->setMargin(4); // Set margin of the qr code $qr->save(storage_path('app/qr.png'));
致谢
- Yee Jia Wei
- 所有贡献者
- Phil Karn, KA9Q
许可协议
MIT 许可协议 (MIT)。更多信息请参阅 许可文件。