fobiaweb / barcode39
Code 39 Barcode Image Generator
Installs: 179 544
Dependents: 0
Suggesters: 0
Security: 0
Stars: 15
Watchers: 5
Forks: 9
Open Issues: 1
Requires
- php: >=5.3.0
This package is auto-updated.
Last update: 2024-11-07 00:16:31 UTC
README
Here is an easy to use PHP barcode generator class for code 39 barcodes.
PHP Barcode Generator Class Code 39
Installation
This package can be installed easily using Composer.
Simply add the following to the composer.json
file at the root of your project:
{
"require": {
"fobiaweb/barcode39": "*"
}
}
Then install your dependencies using composer.phar install
.
Requirements:
PHP Web server and GD Library (Graphics Library).
Documentation
The PHP class will create a GIF barcode image or save a GIF barcode image file, here is an example:
// include Barcode39 class
include "Barcode39.php";
// set Barcode39 object
$bc = new Barcode39("Shay Anderson");
// display new barcode
$bc->draw();
This example will output this barcode:
You can also easily adjust the barcode bar sizes and text size:
// set object
$bc = new Barcode39("123-ABC");
// set text size
$bc->barcode_text_size = 5;
// set barcode bar thickness (thick bars)
$bc->barcode_bar_thick = 4;
// set barcode bar thickness (thin bars)
$bc->barcode_bar_thin = 2;
// save barcode GIF file
$bc->draw("barcode.gif");
This example will save this barcode as "barcode.gif":