]> Raphaƫl G. Git Repositories - cdn/blob - vendor/phpqrcode/README
Add ausweis generator
[cdn] / vendor / phpqrcode / README
1 This is PHP implementation of QR Code 2-D barcode generator. It is pure-php
2 LGPL-licensed implementation based on C libqrencode by Kentaro Fukuchi.
3
4 == UPDATE ==
5 Added support for eps export
6 Usage : QRcode::eps('arguments');
7
8 Added support for SVG export
9 Usage : QRcode::svg('arguments');
10
11 Added support for color export :
12 example :
13 $back_color = 0xFFFF00;
14 $fore_color = 0xFF00FF;
15 QRcode::png('some othertext 1234', false, 'h', 20, 1, false, $back_color, $fore_color);
16
17
18 Copyright (C) 2012 by Alexandre Assouad
19
20 == LICENSING ==
21
22 Copyright (C) 2010 by Dominik Dzienia
23
24 This library is free software; you can redistribute it and/or modify it under
25 the terms of the GNU Lesser General Public License as published by the Free
26 Software Foundation; either version 3 of the License, or any later version.
27
28 This library is distributed in the hope that it will be useful, but WITHOUT ANY
29 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
30 PARTICULAR PURPOSE. See the GNU Lesser General Public License (LICENSE file)
31 for more details.
32
33 You should have received a copy of the GNU Lesser General Public License along
34 with this library; if not, write to the Free Software Foundation, Inc., 51
35 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
36
37 == INSTALATION AND USAGE ==
38
39 * INSTALL file
40 * http://sourceforge.net/apps/mediawiki/phpqrcode/index.php?title=Main_Page
41
42 == CONTACT ==
43
44 Fell free to contact me via e-mail (deltalab at poczta dot fm) or using
45 folowing project pages:
46
47 * http://sourceforge.net/projects/phpqrcode/
48 * http://phpqrcode.sourceforge.net/
49
50 == ACKNOWLEDGMENTS ==
51
52 Based on C libqrencode library (ver. 3.1.1)
53 Copyright (C) 2006-2010 by Kentaro Fukuchi
54 http://megaui.net/fukuchi/works/qrencode/index.en.html
55
56 QR Code is registered trademarks of DENSO WAVE INCORPORATED in JAPAN and other
57 countries.
58
59 Reed-Solomon code encoder is written by Phil Karn, KA9Q.
60 Copyright (C) 2002, 2003, 2004, 2006 Phil Karn, KA9Q
61