下载barcode
将项目放到网站根目录
示例代码
require_once('./barcode/class/BCGColor.php');require_once('./barcode/class/BCGDrawing.php');require_once('./barcode/class/BCGcode128.barcode.php');$colorFront = new \BCGColor(0, 0, 0);$colorBack = new \BCGColor(255, 255, 255);// Barcode Part$font = new \BCGFontFile('./barcode/font/Arial.ttf', 14);$code = new \BCGcode128();$code->setScale(2);$code->setFont($font);$code->setColor($colorFront, $colorBack);$code->parse(I('code','error'));// Drawing Part$drawing = new \BCGDrawing('', $colorBack);$drawing->setBarcode($code);$drawing->draw();header('Content-Type: image/png');$drawing->finish(\BCGDrawing::IMG_FORMAT_PNG);