PHP code example of rafsalvioni / zeus-barcode-febraban
1. Go to this page and download the library: Download rafsalvioni/zeus-barcode-febraban library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
rafsalvioni / zeus-barcode-febraban example snippets
Zeus\Barcode\Renderer\SvgRenderer;
$bcs = [
new \Zeus\Barcode\Febraban\Bloqueto('03399.72101 20500.000110 04833.601018 4 67000000039211'),
new \Zeus\Barcode\Febraban\Convenio('836000000007 839700481006 200471236816 001009939388'),
];
$render = new SvgRenderer();
$render->merge = true;
foreach ($bcs as &$bc) {
$bc->border = 2;
$bc->showText = true;
$bc->draw($render);
$render->offsetTop += $bc->getTotalHeight() + 50;
}
$render->render();