codeages/qrcode
Composer 安装命令:
composer require codeages/qrcode
包简介
Endroid QR Code
README 文档
README
By endroid
This library helps you generate QR codes in an easy way and provides a Symfony bundle for rapid integration in your project.
Installation
Use Composer to install the library.
$ composer require endroid/qrcode
Usage
use Endroid\QrCode\ErrorCorrectionLevel; use Endroid\QrCode\LabelAlignment; use Endroid\QrCode\QrCode; use Symfony\Component\HttpFoundation\Response; // Create a basic QR code $qrCode = new QrCode('Life is too short to be generating QR codes'); $qrCode->setSize(300); // Set advanced options $qrCode ->setWriterByName('png') ->setMargin(10) ->setEncoding('UTF-8') ->setErrorCorrectionLevel(ErrorCorrectionLevel::HIGH) ->setForegroundColor(['r' => 0, 'g' => 0, 'b' => 0]) ->setBackgroundColor(['r' => 255, 'g' => 255, 'b' => 255]) ->setLabel('Scan the code', 16, __DIR__.'/../assets/noto_sans.otf', LabelAlignment::CENTER) ->setLogoPath(__DIR__.'/../assets/symfony.png') ->setLogoWidth(150) ->setValidateResult(false) ; // Directly output the QR code header('Content-Type: '.$qrCode->getContentType()); echo $qrCode->writeString(); // Save it to a file $qrCode->writeFile(__DIR__.'/qrcode.png'); // Create a response object $response = new Response($qrCode->writeString(), Response::HTTP_OK, ['Content-Type' => $qrCode->getContentType()]);
Symfony integration
Register the Symfony bundle in the kernel.
// app/AppKernel.php public function registerBundles() { $bundles = [ // ... new Endroid\QrCode\Bundle\EndroidQrCodeBundle(), ]; }
The bundle makes use of a factory to create QR codes. The default parameters applied by the factory can optionally be overridden via the configuration.
endroid_qr_code: writer: 'png' size: 300 margin: 10 foreground_color: { r: 0, g: 0, b: 0 } background_color: { r: 255, g: 255, b: 255 } error_correction_level: low # low, medium, quartile or high encoding: UTF-8 label: Scan the code label_font_size: 20 label_alignment: left # left, center or right label_margin: { b: 20 } logo_path: '%kernel.root_dir%/../vendor/endroid/qrcode/assets/symfony.png' logo_width: 150 validate_result: false # checks if the result is readable
The readability of a QR code is primarily determined by the size, the input
length, the error correction level and any possible logo over the image. The
validate_result option uses a built-in reader to validate the resulting
image. This does not guarantee that the code will be readable by all readers
but this helps you provide a minimum level of quality. Take note that the
validator can consume quite an amount of resources and is disabled by default.
Now you can retrieve the factory from the service container and create a QR code. For instance in your controller this would look like this.
$qrCode = $this->get('endroid.qrcode.factory')->create('QR Code', ['size' => 200]);
Add the following section to your routing to be able to handle QR code URLs. This step can be skipped if you only use data URIs to display your images.
EndroidQrCodeBundle: resource: "@EndroidQrCodeBundle/Controller/" type: annotation prefix: /qrcode
After installation and configuration, QR codes can be generated by appending the QR code text to the url followed by any of the supported extensions.
Twig extension
The bundle provides a Twig extension for generating a QR code URL, path or data URI. You can use the second argument of any of these functions to override any defaults defined by the bundle or set via your configuration.
<img src="{{ qrcode_path(message) }}" /> <img src="{{ qrcode_url(message, { writer: 'eps' }) }}" /> <img src="{{ qrcode_data_uri(message, { writer: 'svg', size: 150 }) }}" />
Versioning
Version numbers follow the MAJOR.MINOR.PATCH scheme. Backwards compatibility breaking changes will be kept to a minimum but be aware that these can occur. Lock your dependencies for production and test your code when upgrading.
License
This bundle is under the MIT license. For the full copyright and license information please view the LICENSE file that was distributed with this source code.
codeages/qrcode 适用场景与选型建议
codeages/qrcode 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 21 次下载、GitHub Stars 达 0, 最近一次更新时间为 2017 年 08 月 02 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「symfony」 「bundle」 「code」 「endroid」 「qrcode」 「qr」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 codeages/qrcode 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 codeages/qrcode 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 codeages/qrcode 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Memio's PrettyPrinter, used to generate PHP code from given Model
2lenet/EasyAdminPlusBundle
The bundle for easy using json-rpc api on your project
Provide a way to secure accesses to all routes of an symfony application.
DMS Meetup API Bundle, enables Meetup API clients in services
Bundle Symfony DaplosBundle
统计信息
- 总下载量: 21
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-08-02