2023-05-12 15:06:01 +02:00
|
|
|
# QR Code generator
|
2022-04-24 14:32:58 +02:00
|
|
|
|
2023-05-12 15:06:01 +02:00
|
|
|
[![PHP CI](https://github.com/Bacon/BaconQrCode/actions/workflows/ci.yml/badge.svg)](https://github.com/Bacon/BaconQrCode/actions/workflows/ci.yml)
|
|
|
|
[![codecov](https://codecov.io/gh/Bacon/BaconQrCode/branch/master/graph/badge.svg?token=rD0HcAiEEx)](https://codecov.io/gh/Bacon/BaconQrCode)
|
|
|
|
[![Latest Stable Version](https://poser.pugx.org/bacon/bacon-qr-code/v/stable)](https://packagist.org/packages/bacon/bacon-qr-code)
|
|
|
|
[![Total Downloads](https://poser.pugx.org/bacon/bacon-qr-code/downloads)](https://packagist.org/packages/bacon/bacon-qr-code)
|
|
|
|
[![License](https://poser.pugx.org/bacon/bacon-qr-code/license)](https://packagist.org/packages/bacon/bacon-qr-code)
|
2022-04-24 14:32:58 +02:00
|
|
|
|
2023-05-12 15:06:01 +02:00
|
|
|
|
|
|
|
## Introduction
|
2022-04-24 14:32:58 +02:00
|
|
|
BaconQrCode is a port of QR code portion of the ZXing library. It currently
|
|
|
|
only features the encoder part, but could later receive the decoder part as
|
|
|
|
well.
|
|
|
|
|
|
|
|
As the Reed Solomon codec implementation of the ZXing library performs quite
|
|
|
|
slow in PHP, it was exchanged with the implementation by Phil Karn.
|
|
|
|
|
|
|
|
|
2023-05-12 15:06:01 +02:00
|
|
|
## Example usage
|
2022-04-24 14:32:58 +02:00
|
|
|
```php
|
2023-05-12 15:06:01 +02:00
|
|
|
use BaconQrCode\Renderer\ImageRenderer;
|
|
|
|
use BaconQrCode\Renderer\Image\ImagickImageBackEnd;
|
|
|
|
use BaconQrCode\Renderer\RendererStyle\RendererStyle;
|
|
|
|
use BaconQrCode\Writer;
|
|
|
|
|
|
|
|
$renderer = new ImageRenderer(
|
|
|
|
new RendererStyle(400),
|
|
|
|
new ImagickImageBackEnd()
|
|
|
|
);
|
|
|
|
$writer = new Writer($renderer);
|
2022-04-24 14:32:58 +02:00
|
|
|
$writer->writeFile('Hello World!', 'qrcode.png');
|
|
|
|
```
|
2023-05-12 15:06:01 +02:00
|
|
|
|
|
|
|
## Available image renderer back ends
|
|
|
|
BaconQrCode comes with multiple back ends for rendering images. Currently included are the following:
|
|
|
|
|
|
|
|
- `ImagickImageBackEnd`: renders raster images using the Imagick library
|
|
|
|
- `SvgImageBackEnd`: renders SVG files using XMLWriter
|
|
|
|
- `EpsImageBackEnd`: renders EPS files
|