Your IP : 216.73.216.65


Current Path : /home/ataenra/www/ATA/INTRANET/Outils/jpgraph/Examples/
Upload File :
Current File : /home/ataenra/www/ATA/INTRANET/Outils/jpgraph/Examples/barcode_ex0.php

<?php
// ==============================================
// Output Image using Code 39 using only default values
// ==============================================
require_once ('jpgraph/jpgraph_barcode.php');

$encoder = BarcodeFactory::Create(ENCODING_CODE39);
$e = BackendFactory::Create(BACKEND_IMAGE,$encoder);
$e->Stroke('ABC123');

?>