By endroid
This library helps you generate images containing a QR code.
<?php
use Endroid\QrCode\QrCode;
$qrCode = new QrCode();
$qrCode
->setText("Life is too short to be generating QR codes");
->setSize(300);
->setPadding(10);
->setErrorCorrection('high')
->setForegroundColor(array('r' => 0, 'g' => 0, 'b' => 0, 'a' => 0));
->setBackgroundColor(array('r' => 255, 'g' => 255, 'b' => 255, 'a' => 0));
->render();
You can use EndroidQrCodeBundle
to integrate this service in your Symfony application.
Semantic versioning (semver) is applied.
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.