tuckbloor / upc-barcode
UPC Barcode Generator
dev-master
2019-02-25 19:44 UTC
Requires
- php: >= 5.3.0
Requires (Dev)
- filp/whoops: 2.3.*
This package is auto-updated.
Last update: 2025-05-25 20:17:23 UTC
README
UPC Barcode Generator
A Simple Class that you pass the 12 digits for A UPC code and the class displays the generated barcode this can be saved instead
The following are PHP requirements
PHP >= 5.3 GD Extension
For Testing
<?php
require_once __DIR__ . '/vendor/autoload.php';
$code = "033984026216";
$upc = new App\Upc(2, $code);
$upc->generate();
?>