Skip to content

Instantly share code, notes, and snippets.

@jacricelli
Created February 13, 2017 15:25
Show Gist options
  • Save jacricelli/df312d71b2efccb41e930c3b7473e8dd to your computer and use it in GitHub Desktop.
Save jacricelli/df312d71b2efccb41e930c3b7473e8dd to your computer and use it in GitHub Desktop.
Generar código de barras 'Interleaved 2 of 5'
<?php
require 'vendor/autoload.php';
use Zend\Barcode\Barcode;
header('Content-Type: image/gif');
$barcodeOptions = [
'text' => '202675653930240016120303473904220110529',
'barHeight' => '30',
'withChecksum' => true
];
$barcode = Barcode::factory('code25interleaved', 'image', $barcodeOptions);
imagegif($barcode->draw(), 'barcode.gif');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment