Last active
August 20, 2019 16:16
-
-
Save joeybab3/c70262e8d788d453eff4d0ff8524eda3 to your computer and use it in GitHub Desktop.
Revisions
-
joeybab3 revised this gist
Aug 20, 2019 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,6 @@ <?php require_once 'vendor/autoload.php'; $number = 00002347350023848878; $generator = new Picqer\Barcode\BarcodeGeneratorHTML(); $code = chr(241).$number; ?> -
joeybab3 created this gist
Jul 17, 2019 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ <?php require_once 'vendor/autoload.php'; $number = 00002347350023848877; $generator = new Picqer\Barcode\BarcodeGeneratorHTML(); $code = chr(241).$number; ?> <!DOCTYPE html> <html> <body> <?php echo $generator->getBarcode($code, Picqer\Barcode\BarcodeGeneratorPNG::TYPE_CODE_128_C, 2, 60); ?> </body> </html>