alveos/phpqrcode

PHPQRCode porting and changed for PHP 5.3 compatibility

1.0.1 2013-07-08 09:39 UTC

This package is not auto-updated.

Last update: 2024-04-23 03:01:34 UTC


README

To install this library please follow the next steps:

Install the library using composer:

Add the required module to your composer.json file:

{
    "require": {
        ...
        "Alveos/phpqrcode": "master"
        ...
    }

    ...

    "repositories": [
    	...
        {
            "type":"package",
            "package": {
              "name": "Alveos/phpqrcode",
              "version":"master",
              "source": {
                  "url": "git@github.com:Alveos/PHPQRCode.git",
                  "type": "git",
                  "reference":"master"
                }
            }
        }
        ...
    ]
}

Then run the command composer update.

Usage

Sample code:

\PHPQRCode\QRcode::png("Test", "/tmp/qrcode.png", 'L', 4, 2, false, true);//Output png

\PHPQRCode\QRcode::jpg("Test", "/tmp/qrcode.jpeg", 'L', 4, 2, true, false);//Save jpeg

This code will generate a PNG file on '/tmp/qrcode.png' with a QRCode that contains the word 'Test'.

Acknowledgements

This library is an import of PHP QR Code by Dominik Dzienia that you can find at http://phpqrcode.sourceforge.net, and a fork moving from GD to Imagick (ref: http://stackoverflow.com/questions/8669592/create-a-qr-code-image-with-the-php-imagick-library)

Based on C libqrencode library (ver. 3.1.1), Copyright (C) 2006-2010 by Kentaro Fukuchi http://megaui.net/fukuchi/works/qrencode/index.en.html

QR Code is registered trademarks of DENSO WAVE INCORPORATED in JAPAN and other countries.

Reed-Solomon code encoder is written by Phil Karn, KA9Q. Copyright (C) 2002, 2003, 2004, 2006 Phil Karn, KA9Q