tuckbloor / upc-barcode
UPC Barcode Generator
Installs: 16
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/tuckbloor/upc-barcode
Requires
- php: >= 5.3.0
Requires (Dev)
- filp/whoops: 2.3.*
This package is auto-updated.
Last update: 2025-11-25 21:43:03 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();
?>