b0y-101 Mini Shell


Current Path : E:/www/b-group.old/business/applicationmba/
File Upload :
Current File : E:/www/b-group.old/business/applicationmba/barcode.php

<?php
include "file:///E|/project20/src/BarcodeGenerator.php";
include('file:///E|/project20/src/BarcodeGeneratorPNG.php');

$code = [
	"|012345678901200\n123456789012345678\n123456789012345678\n0",
	"|012345678901200\n123456789012345678\n123456789012345678\n0",
];

$i = 1;

$generatorPNG = new Picqer\Barcode\BarcodeGeneratorPNG();

foreach($code as $barcode){

	echo '<p style="font-size:14px;">';
	echo '<img width="380" height="35" src="data:image/png;base64,' . base64_encode($generatorPNG->getBarcode($barcode, $generatorPNG::TYPE_CODE_128)) . '">';
	echo '<br>';
	echo $barcode."</p>";
	
}

?>

Copyright © 2019 by b0y-101