viivakoodi
Folders and files
Name | Name | Last commit date | ||
---|---|---|---|---|
parent directory.. | ||||
= Image_Barcode - a package to render barcodes = ------------------------------------------------ With PEAR::Image_Barcode class you can create a barcode representation of a given string. This class uses GD function because this the generated graphic can be any of GD supported supported image types. = Installation = ---------------- You can install Image_Barcode issuing the following command (as root): # pear install Image_Barcode If you don't have the 'pear' command, please consult PEAR::The PHP Extension and Application 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. Just send your module directly to [email protected] = Credits = ----------- Core class written by Marcelo Subtil Marcal <[email protected]> Interleaved 2 of 5 barcode module type written by Marcelo Subtil Marcal <[email protected]> EAN13 barcode module type written by Didier FOURNOUT <[email protected]> Code39 barcode module type written by Ryan Briones <[email protected]> UPC-A and Code128 barcode modules written by Jeffrey K. Brown <[email protected]> PostNet barcode module type written by Josef "Jeff" Sipek <[email protected]> = Thanks to = ------------- Mark A.R. <[email protected]> = Author = ---------- Written by Marcelo Subtil Marcal <[email protected]> = Reporting Bugs = ------------------ Report bugs at: http://pear.php.net/bugs/report.php?package=Image_Barcode