2017 © Pedro Peláez
 

library barcode39

Code 39 Barcode Image Generator

image

fobiaweb/barcode39

Code 39 Barcode Image Generator

  • Thursday, December 8, 2016
  • by fobia
  • Repository
  • 4 Watchers
  • 4 Stars
  • 148,641 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 5 Forks
  • 1 Open issues
  • 4 Versions
  • 1 % Grown

The README.md

PHP Barcode Generator Class Code 39

Here is an easy to use PHP barcode generator class for code 39 barcodes., (*1)

PHP Barcode Generator Class Code 39, (*2)

Installation

This package can be installed easily using Composer. Simply add the following to the composer.json file at the root of your project:, (*3)

{
  "require": {
    "fobiaweb/barcode39": "*"
  }
}

Then install your dependencies using composer.phar install., (*4)

Requirements:

PHP Web server and GD Library (Graphics Library)., (*5)

Documentation

The PHP class will create a GIF barcode image or save a GIF barcode image file, here is an example:, (*6)

// 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:, (*7)

barcode39, (*8)

You can also easily adjust the barcode bar sizes and text size:, (*9)

// 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":, (*10)

barcode39, (*11)

The Versions

08/12 2016

dev-master

9999999-dev http://www.shayanderson.com/php/php-barcode-generator-class-code-39.htm

Code 39 Barcode Image Generator

  Sources   Download

The Requires

  • php >=5.3.0

 

08/12 2016

v1.2

1.2.0.0 http://www.shayanderson.com/php/php-barcode-generator-class-code-39.htm

Code 39 Barcode Image Generator

  Sources   Download

The Requires

  • php >=5.3.0

 

08/05 2014

v1.1

1.1.0.0 http://www.shayanderson.com/php/php-barcode-generator-class-code-39.htm

Code 39 Barcode Image Generator

  Sources   Download

The Requires

  • php >=5.3.0

 

08/05 2014

v1.0

1.0.0.0 http://www.shayanderson.com/php/php-barcode-generator-class-code-39.htm

Code 39 Barcode Image Generator

  Sources   Download

The Requires

  • php >=5.3.0