【例子介绍】一维条码的生成工具(PHP)
一维条码的生成工具(PHP) 支持 code 39、Code 11、EAN13、EAN8、Code 128等各种条码格式
【相关图片】
【源码结构】
文件清单
├── class
│ ├── BCGArgumentException.php
│ ├── BCGBarcode1D.php
│ ├── BCGBarcode.php
│ ├── BCGcodabar.barcode.php
│ ├── BCGcode11.barcode.php
│ ├── BCGcode128.barcode.php
│ ├── BCGcode39.barcode.php
│ ├── BCGcode39extended.barcode.php
│ ├── BCGcode93.barcode.php
│ ├── BCGColor.php
│ ├── BCGDrawException.php
│ ├── BCGDrawing.php
│ ├── BCGean13.barcode.php
│ ├── BCGean8.barcode.php
│ ├── BCGFontFile.php
│ ├── BCGFont.php
│ ├── BCGFontPhp.php
│ ├── BCGgs1128.barcode.php
│ ├── BCGi25.barcode.php
│ ├── BCGintelligentmail.barcode.php
│ ├── BCGisbn.barcode.php
│ ├── BCGLabel.php
│ ├── BCGmsi.barcode.php
│ ├── BCGothercode.barcode.php
│ ├── BCGParseException.php
│ ├── BCGpostnet.barcode.php
│ ├── BCGs25.barcode.php
│ ├── BCGupca.barcode.php
│ ├── BCGupce.barcode.php
│ ├── BCGupcext2.barcode.php
│ ├── BCGupcext5.barcode.php
│ ├── drawer
│ │ ├── BCGDrawJPG.php
│ │ ├── BCGDraw.php
│ │ └── BCGDrawPNG.php
│ ├── font
│ │ └── Arial.ttf
│ └── JoinDraw.php
├── html
│ ├── barcode.js
│ ├── codabar.php
│ ├── code11.php
│ ├── code128.php
│ ├── code39extended.php
│ ├── code39.php
│ ├── code93.php
│ ├── delete.png
│ ├── ean13.php
│ ├── ean8.php
│ ├── error.png
│ ├── footer.php
│ ├── function.php
│ ├── gs1128.php
│ ├── header.php
│ ├── i25.php
│ ├── image.php
│ ├── index.php
│ ├── info.gif
│ ├── intelligentmail.php
│ ├── isbn.php
│ ├── jquery-1.7.2.min.js
│ ├── logo.png
│ ├── msi.php
│ ├── othercode.php
│ ├── postnet.php
│ ├── s25.php
│ ├── style.css
│ ├── upca.php
│ ├── upce.php
│ ├── upcext2.php
│ └── upcext5.php
├── index.php
├── README.txt
├── test.html
├── test.php
└── VERSION
4 directories, 73 files
评论