fobiaweb/barcode39

There is no license information available for the latest version (v1.2) of this package.

Code 39 Barcode Image Generator

v1.2 2016-12-08 20:39 UTC

This package is auto-updated.

Last update: 2024-03-06 22:44:18 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:

barcode39

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":

barcode39