PluginProbe ʕ •ᴥ•ʔ
Booking for Appointments and Events Calendar – Amelia / 2.4.4
Booking for Appointments and Events Calendar – Amelia v2.4.4
2.4.4 2.4.3 2.4.2 2.4.1 2.4 trunk 1.2.1 1.2.10 1.2.11 1.2.12 1.2.13 1.2.14 1.2.15 1.2.16 1.2.17 1.2.18 1.2.19 1.2.2 1.2.20 1.2.21 1.2.22 1.2.23 1.2.24 1.2.25 1.2.26 1.2.27 1.2.28 1.2.29 1.2.3 1.2.30 1.2.31 1.2.32 1.2.33 1.2.34 1.2.35 1.2.36 1.2.37 1.2.38 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 2.0 2.0.1 2.0.2 2.1 2.1.1 2.1.2 2.1.3 2.2 2.2.1 2.3
ameliabooking / vendor / bacon / bacon-qr-code / README.md
ameliabooking / vendor / bacon / bacon-qr-code Last commit date
src 8 months ago test 8 months ago LICENSE 8 months ago README.md 8 months ago composer.json 8 months ago phpunit.xml.dist 8 months ago
README.md
40 lines
1 # QR Code generator
2
3 [](https://github.com/Bacon/BaconQrCode/actions/workflows/ci.yml![PHP CI](https://github.com/Bacon/BaconQrCode/actions/workflows/ci.yml/badge.svg)](https://github.com/Bacon/BaconQrCode/actions/workflows/ci.yml](https://github.com/Bacon/BaconQrCode/actions/workflows/ci.yml)
4 [](https://codecov.io/gh/Bacon/BaconQrCode![codecov](https://codecov.io/gh/Bacon/BaconQrCode/branch/master/graph/badge.svg?token=rD0HcAiEEx)](https://codecov.io/gh/Bacon/BaconQrCode](https://codecov.io/gh/Bacon/BaconQrCode)
5 [](https://packagist.org/packages/bacon/bacon-qr-code![Latest Stable Version](https://poser.pugx.org/bacon/bacon-qr-code/v/stable)](https://packagist.org/packages/bacon/bacon-qr-code](https://packagist.org/packages/bacon/bacon-qr-code)
6 [](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](https://packagist.org/packages/bacon/bacon-qr-code)
7 [](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](https://packagist.org/packages/bacon/bacon-qr-code)
8
9
10 ## Introduction
11 BaconQrCode is a port of QR code portion of the ZXing library. It currently
12 only features the encoder part, but could later receive the decoder part as
13 well.
14
15 As the Reed Solomon codec implementation of the ZXing library performs quite
16 slow in PHP, it was exchanged with the implementation by Phil Karn.
17
18
19 ## Example usage
20 ```php
21 use BaconQrCode\Renderer\ImageRenderer;
22 use BaconQrCode\Renderer\Image\ImagickImageBackEnd;
23 use BaconQrCode\Renderer\RendererStyle\RendererStyle;
24 use BaconQrCode\Writer;
25
26 $renderer = new ImageRenderer(
27 new RendererStyle(400),
28 new ImagickImageBackEnd()
29 );
30 $writer = new Writer($renderer);
31 $writer->writeFile('Hello World!', 'qrcode.png');
32 ```
33
34 ## Available image renderer back ends
35 BaconQrCode comes with multiple back ends for rendering images. Currently included are the following:
36
37 - `ImagickImageBackEnd`: renders raster images using the Imagick library
38 - `SvgImageBackEnd`: renders SVG files using XMLWriter
39 - `EpsImageBackEnd`: renders EPS files
40