Created
February 13, 2017 15:25
-
-
Save jacricelli/df312d71b2efccb41e930c3b7473e8dd to your computer and use it in GitHub Desktop.
Generar código de barras 'Interleaved 2 of 5'
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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