You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

39 lines
1.2 KiB

  1. <?php
  2. // We could be more dynamic and open each file to find its name
  3. // But that would hinder the performance
  4. $supportedBarcodes = array(
  5. // 1D
  6. 'BCGcodabar.php' => 'Codabar',
  7. 'BCGcode11.php' => 'Code 11',
  8. 'BCGcode39.php' => 'Code 39',
  9. 'BCGcode39extended.php' => 'Code 39 Extended',
  10. 'BCGcode93.php' => 'Code 93',
  11. 'BCGcode128.php' => 'Code 128',
  12. 'BCGean8.php' => 'EAN-8',
  13. 'BCGean13.php' => 'EAN-13',
  14. 'BCGgs1128.php' => 'GS1-128 (EAN-128)',
  15. 'BCGisbn.php' => 'ISBN',
  16. 'BCGi25.php' => 'Interleaved 2 of 5',
  17. 'BCGs25.php' => 'Standard 2 of 5',
  18. 'BCGmsi.php' => 'MSI Plessey',
  19. 'BCGupca.php' => 'UPC-A',
  20. 'BCGupce.php' => 'UPC-E',
  21. 'BCGupcext2.php' => 'UPC Extenstion 2 Digits',
  22. 'BCGupcext5.php' => 'UPC Extenstion 5 Digits',
  23. 'BCGpostnet.php' => 'Postnet',
  24. 'BCGintelligentmail.php' => 'Intelligent Mail',
  25. 'BCGothercode.php' => 'Other Barcode',
  26. // Databar
  27. 'BCGdatabarexpanded.php' => 'Databar Expanded',
  28. 'BCGdatabarlimited.php' => 'Databar Limited',
  29. 'BCGdatabaromni.php' => 'Databar Omni',
  30. // 2D
  31. 'BCGaztec.php' => 'Aztec',
  32. 'BCGdatamatrix.php' => 'DataMatrix',
  33. 'BCGmaxicode.php' => 'MaxiCode',
  34. 'BCGpdf417.php' => 'PDF417',
  35. 'BCGqrcode.php' => 'QRCode'
  36. );
  37. ?>