Blame | Letzte Änderung | Log anzeigen | RSS feed
= Image_Barcode - a package to render barcodes =------------------------------------------------With PEAR::Image_Barcode class you can create a barcode representation of agiven string.This class uses GD function because this the generated graphic can be any ofGD supported supported image types.= Installation =----------------You can install Image_Barcode issuing the following command (as root):# pear install Image_BarcodeIf you don't have the 'pear' command, please consult PEAR::The PHP Extension andApplication Repository homepage at http://pear.php.net= Getting Started =-------------------Just load the class in your script:require_once('Image/Barcode.php');Call the Image_Barcode::draw() as the follow:Image_Barcode::draw('1234', 'int25', 'png');Where:= '1234' : string you want to draw as barcode;= 'int25': barcode type (check the avaible types at 'Barcode' subdir);= 'png' : generated graphic type.= Current State =-----------------You can get the latest code at the PEAR site:http://pear.php.net/package/Image_Barcode/= Contributing =----------------Help from people who want code new barcode module types are very welcome. Justsend your module directly to msmarcal@php.net= Credits =-----------Core classwritten by Marcelo Subtil Marcal <msmarcal@php.net>Interleaved 2 of 5 barcode module typewritten by Marcelo Subtil Marcal <msmarcal@php.net>EAN13 barcode module typewritten by Didier FOURNOUT <didier.fournout@nyc.fr>Code39 barcode module typewritten by Ryan Briones <ryanbriones@webxdesign.org>UPC-A and Code128 barcode moduleswritten by Jeffrey K. Brown <jkb@darkfantastic.net>PostNet barcode module typewritten by Josef "Jeff" Sipek <jeffpc@optonline.net>= Thanks to =-------------Mark A.R. <mark@mark.org.il>= Author =----------Written by Marcelo Subtil Marcal <msmarcal@php.net>= Reporting Bugs =------------------Report bugs at: http://pear.php.net/bugs/report.php?package=Image_Barcode