2017 © Pedro Peláez
 

library tc-lib-barcode

PHP library to generate linear and bidimensional barcodes

image

tecnickcom/tc-lib-barcode

PHP library to generate linear and bidimensional barcodes

  • Saturday, June 23, 2018
  • by nicolaasuni
  • Repository
  • 10 Watchers
  • 67 Stars
  • 207,962 Installations
  • PHP
  • 8 Dependents
  • 0 Suggesters
  • 24 Forks
  • 0 Open issues
  • 61 Versions
  • 16 % Grown

The README.md

tc-lib-barcode

PHP barcode library, (*1)

Latest Stable Version Build Coverage License Downloads, (*2)

Donate via PayPal Please consider supporting this project by making a donation via PayPal, (*3)

  • category Library
  • package \Com\Tecnick\Barcode
  • author Nicola Asuni info@tecnick.com
  • copyright 2001-2023 Nicola Asuni - Tecnick.com LTD
  • license http://www.gnu.org/copyleft/lesser.html GNU-LGPL v3 (see LICENSE.TXT)
  • link https://github.com/tecnickcom/tc-lib-barcode
  • SRC DOC https://tcpdf.org/docs/srcdoc/tc-lib-barcode

Description

This library includes utility PHP classes to generate linear and bidimensional barcodes:, (*4)

  • C39 : CODE 39 - ANSI MH10.8M-1983 - USD-3 - 3 of 9
  • C39+ : CODE 39 with checksum
  • C39E : CODE 39 EXTENDED
  • C39E+ : CODE 39 EXTENDED + CHECKSUM
  • C93 : CODE 93 - USS-93
  • S25 : Standard 2 of 5
  • S25+ : Standard 2 of 5 + CHECKSUM
  • I25 : Interleaved 2 of 5
  • I25+ : Interleaved 2 of 5 + CHECKSUM
  • C128 : CODE 128
  • C128A : CODE 128 A
  • C128B : CODE 128 B
  • C128C : CODE 128 C
  • EAN2 : 2-Digits UPC-Based Extension
  • EAN5 : 5-Digits UPC-Based Extension
  • EAN8 : EAN 8
  • EAN13 : EAN 13
  • UPCA : UPC-A
  • UPCE : UPC-E
  • MSI : MSI (Variation of Plessey code)
  • MSI+ : MSI + CHECKSUM (modulo 11)
  • POSTNET : POSTNET
  • PLANET : PLANET
  • RMS4CC : RMS4CC (Royal Mail 4-state Customer Code) - CBC (Customer Bar Code)
  • KIX : KIX (Klant index - Customer index)
  • IMB : IMB - Intelligent Mail Barcode - Onecode - USPS-B-3200
  • IMBPRE : IMB - Intelligent Mail Barcode - Onecode - USPS-B-3200- pre-processed
  • CODABAR : CODABAR
  • CODE11 : CODE 11
  • PHARMA : PHARMACODE
  • PHARMA2T : PHARMACODE TWO-TRACKS
  • AZTEC : AZTEC Code (ISO/IEC 24778:2008)
  • DATAMATRIX : DATAMATRIX (ISO/IEC 16022)
  • PDF417 : PDF417 (ISO/IEC 15438:2006)
  • QRCODE : QR-CODE
  • RAW : 2D RAW MODE comma-separated rows
  • RAW2 : 2D RAW MODE rows enclosed in square parentheses

Output Formats

  • PNG Image
  • SVG Image
  • HTML DIV
  • Unicode String
  • Binary String

The initial source code has been derived from TCPDF., (*5)

Getting started

First, you need to install all development dependencies using Composer:, (*6)

$ curl -sS https://getcomposer.org/installer | php
$ mv composer.phar /usr/local/bin/composer

This project include a Makefile that allows you to test and build the project with simple commands. To see all available options:, (*7)

make help

To install all the development dependencies:, (*8)

make deps

Running all tests

Before committing the code, please check if it passes all tests using, (*9)

make qa

All artifacts are generated in the target directory., (*10)

Examples

Examples are located in the example directory., (*11)

Start a development server (requires PHP 8.0+) using the command:, (*12)

make server

and point your browser to http://localhost:8000/index.php, (*13)

Simple Code Example

Please check example/index.php for a full example., (*14)

// instantiate the barcode class
$barcode = new \Com\Tecnick\Barcode\Barcode();

// generate a barcode
$bobj = $barcode->getBarcodeObj(
    'QRCODE,H',                     // barcode type and additional comma-separated parameters
    'https://tecnick.com',          // data string to encode
    -4,                             // bar width (use absolute or negative value as multiplication factor)
    -4,                             // bar height (use absolute or negative value as multiplication factor)
    'black',                        // foreground color
    array(-2, -2, -2, -2)           // padding (use absolute or negative values as multiplication factors)
    )->setBackgroundColor('white'); // background color

// output the barcode as HTML div (see other output formats in the documentation and examples)
echo $bobj->getHtmlDiv();

Installation

Create a composer.json in your projects root-directory:, (*15)

{
    "require": {
        "tecnickcom/tc-lib-barcode": "^2.0"
    }
}

Or add to an existing project with:, (*16)

composer require tecnickcom/tc-lib-barcode ^2.0

Packaging

This library is mainly intended to be used and included in other PHP projects using Composer. However, since some production environments dictates the installation of any application as RPM or DEB packages, this library includes make targets for building these packages (make rpm and make deb). The packages are generated under the target directory., (*17)

When this library is installed using an RPM or DEB package, you can use it your code by including the autoloader:, (*18)

require_once ('/usr/share/php/Com/Tecnick/Barcode/autoload.php');

Developer(s) Contact

The Versions

23/06 2018

dev-master

9999999-dev http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

LGPL-3.0

The Requires

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

23/06 2018

dev-develop

dev-develop http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

LGPL-3.0

The Requires

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

23/06 2018

1.15.12

1.15.12.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

LGPL-3.0

The Requires

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

14/05 2018

1.15.11

1.15.11.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

LGPL-3.0

The Requires

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

13/05 2018

1.15.10

1.15.10.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

LGPL-3.0

The Requires

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

13/05 2018

1.15.9

1.15.9.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

LGPL-3.0

The Requires

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

20/04 2018

1.15.8

1.15.8.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

LGPL-3.0

The Requires

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

30/12 2017

1.15.7

1.15.7.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

LGPL-3.0

The Requires

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

12/02 2017

1.15.6

1.15.6.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

LGPL-3.0

The Requires

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

05/02 2017

1.15.5

1.15.5.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

LGPL-3.0

The Requires

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

17/11 2016

1.15.4

1.15.4.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

LGPL-3.0

The Requires

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

13/10 2016

1.15.2

1.15.2.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

LGPL-3.0

The Requires

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

04/09 2016

1.15.0

1.15.0.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

LGPL-3.0

The Requires

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

01/09 2016

1.14.0

1.14.0.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

LGPL-3.0

The Requires

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

31/08 2016

1.13.0

1.13.0.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

LGPL-3.0

The Requires

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

30/08 2016

1.12.1

1.12.1.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

LGPL-3.0

The Requires

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

25/08 2016

1.11.0

1.11.0.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

LGPL-3.0

The Requires

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

22/08 2016

1.10.3

1.10.3.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

LGPL-3.0

The Requires

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

21/08 2016

1.10.2

1.10.2.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

LGPL-3.0

The Requires

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

20/08 2016

1.10.0

1.10.0.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

LGPL-3.0

The Requires

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

10/07 2016

1.9.2

1.9.2.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

LGPL-3.0

The Requires

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

13/06 2016

1.9.0

1.9.0.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

LGPL-3.0

The Requires

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

09/03 2016

1.8.0

1.8.0.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

GNU-LGPL v3

The Requires

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

04/03 2016

1.7.3

1.7.3.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

GNU-LGPL v3

The Requires

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

06/02 2016

1.7.2

1.7.2.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

GNU-LGPL v3

The Requires

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

14/12 2015

1.7.1

1.7.1.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

GNU-LGPL v3

The Requires

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

11/12 2015

1.7.0

1.7.0.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

GNU-LGPL v3

The Requires

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

10/12 2015

1.6.8

1.6.8.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

GNU-LGPL v3

The Requires

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

10/12 2015

1.6.7

1.6.7.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

GNU-LGPL v3

The Requires

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

08/12 2015

1.6.6

1.6.6.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

GNU-LGPL v3

The Requires

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

07/12 2015

1.6.5

1.6.5.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

GNU-LGPL v3

The Requires

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

07/12 2015

1.6.4

1.6.4.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

GNU-LGPL v3

The Requires

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

03/12 2015

1.6.3

1.6.3.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

GNU-LGPL v3

The Requires

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

03/12 2015

1.6.2

1.6.2.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

GNU-LGPL v3

The Requires

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

26/11 2015

1.6.1

1.6.1.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

GNU-LGPL v3

The Requires

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

24/11 2015

1.6.0

1.6.0.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

GNU-LGPL v3

The Requires

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

22/11 2015

1.5.8

1.5.8.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

GNU-LGPL v3

The Requires

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

22/11 2015

1.5.7

1.5.7.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

GNU-LGPL v3

The Requires

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

20/11 2015

1.5.6

1.5.6.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

GNU-LGPL v3

The Requires

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

19/11 2015

1.5.5

1.5.5.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

GNU-LGPL v3

The Requires

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

19/11 2015

1.5.4

1.5.4.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

GNU-LGPL v3

The Requires

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

19/11 2015

1.5.3

1.5.3.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

GNU-LGPL v3

The Requires

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

18/11 2015

1.5.2

1.5.2.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

GNU-LGPL v3

The Requires

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

18/11 2015

1.5.1

1.5.1.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

GNU-LGPL v3

The Requires

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

04/11 2015

1.5.0

1.5.0.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

GNU-LGPL v3

The Requires

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

19/10 2015

1.4.7

1.4.7.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

GNU-LGPL v3

The Requires

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

25/09 2015

1.4.6

1.4.6.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

GNU-LGPL v3

The Requires

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

25/09 2015

1.4.4

1.4.4.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

GNU-LGPL v3

The Requires

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

12/09 2015

1.4.3

1.4.3.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

GNU-LGPL v3

The Requires

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

26/08 2015

1.4.2

1.4.2.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

GNU-LGPL v3

The Requires

  • php >=5.3.3
  • tecnick.com/tc-lib-color dev-master

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

11/08 2015

1.4.1

1.4.1.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

GNU-LGPL v3

The Requires

  • php >=5.3.3
  • tecnick.com/tc-lib-color dev-master

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

10/08 2015

1.4.0

1.4.0.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

GNU-LGPL v3

The Requires

  • php >=5.3.3
  • tecnick.com/tc-lib-color dev-master

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

08/08 2015

1.3.1

1.3.1.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

GNU-LGPL v3

The Requires

  • php >=5.3.3
  • tecnick.com/tc-lib-color dev-master

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

06/08 2015

1.3.0

1.3.0.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

GNU-LGPL v3

The Requires

  • php >=5.3.3
  • tecnick.com/tc-lib-color dev-master

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

21/07 2015

1.2.1

1.2.1.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

GNU-LGPL v3

The Requires

  • php >=5.3.3
  • tecnick.com/tc-lib-color dev-master

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

02/07 2015

1.2.0

1.2.0.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

GNU-LGPL v3

The Requires

  • php >=5.3.3
  • tecnick.com/tc-lib-color dev-master

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

01/07 2015

1.1.3

1.1.3.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

GNU-LGPL v3

The Requires

  • php >=5.3.3
  • tecnick.com/tc-lib-color dev-master

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

18/06 2015

1.1.2

1.1.2.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

GNU-LGPL v3

The Requires

  • php >=5.3.3
  • tecnick.com/tc-lib-color dev-master

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

14/05 2015

1.1.1

1.1.1.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

GNU-LGPL v3

The Requires

  • php >=5.3.3
  • tecnick.com/tc-lib-color dev-master

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200 code 128 a b c

05/05 2015

1.1.0

1.1.0.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

GNU-LGPL v3

The Requires

  • php >=5.3.3
  • tecnick.com/tc-lib-color dev-master

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200

06/04 2015

1.0.0

1.0.0.0 http://www.tecnick.com

PHP library to generate linear and bidimensional barcodes

  Sources   Download

GNU-LGPL v3

The Requires

  • php >=5.3.3
  • tecnick.com/tc-lib-color dev-master

 

The Development Requires

barcode datamatrix pdf417 code 39 codabar qr-code planet upc standard 2 of 5 msi postnet kix code 93 interleaved 2 of 5 upc-a upc-e royal mail cbc tc-lib-barcode ansi mh10.8m-1983 usd-3 3 of 9 uss-93 ean 8 ean 13 rms4cc klant intelligent mail barcode onecode usps-b-3200 code 11 pharmacode pharmacode two-tracks ecc200