README 1.9 KB

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