Types of Barcode
Supporting multiple barcode types like TYPE_CODE_39, TYPE_CODE_128,
TYPE_EAN_13, TYPE_UPC_E, etc
Check detailed list in Barcode package's README.md
Type Code 128
\koolreport\barcode\BarCode::create(array(
"format" => "jpg",
"value"=>"081231723897",
"type"=>"TYPE_CODE_128"
));
HTML:
SVG:
081231723897
081231723897
JPG:
PNG:
081231723897
081231723897
Type Code 39
\koolreport\barcode\BarCode::create(array(
"format" => "jpg",
"value"=>"081231723897",
"type"=>"TYPE_CODE_39"
));
HTML:
081231723897
SVG:
081231723897
JPG:
081231723897
PNG:
081231723897