yeejiawei/laravel-qrcode

Laravel Wrapper for phpqrcode

0.1.0 2023-02-16 13:44 UTC

This package is auto-updated.

Last update: 2024-05-16 16:42:34 UTC


README

Latest Version on Packagist Total Downloads

Installation

You can install the package via composer:

composer require yeejiawei/laravel-qrcode

Usage

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'));

Credits

License

The MIT License (MIT). Please see License File for more information.