A utility to create barcode representation of ASCII strings. At present only Code 128 is supported. The utility only returns encoded data in string. Actual rendering of the barcode is left to client. Examples of drawing the barcode to PDF are provided., (*1)
php 7+, (*2)
composer require kargirwar/barcoder, (*3)
require("vendor/autoload.php"); use \Kargirwar\Barcoder\Barcoder; print_r(Barcoder::encode(Barcoder::CODE_128_C, "1234"));
Licence MIT., (*4)