|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
看看西,人家这个编论坛,那个CMS,还有那啥CRM,我啥时候写一个呢?该软件撑持PHP4和PHP5两个版本,本文中利用的是PHP5的版本。在利用前注重要将PHP的GD模块开启。在Windows中为php_gd2.dll,Linux中为gd.so。将紧缩文件解压到Apache,履行http://localhost/barcode/index.php。PHP5生成条形码见下图: 1. Type:选择条形码类型
2. Output:输入的图片格局
3. Thickness:条形码高度
4. Resolution:条形码巨细
5. Font:条形码下方的文字巨细,也可不显示文字
6. Text:条形码打印的内容
固然,这个PHP5生成条形码法式只是将文字生成为条形码,但利用时不克不及天真将其嵌入其他PHP法式,我将紧缩包外面的test.php做了一些调剂,使其能天真的用于其他法式。运转时只需将条码类型和文字传给test.php便可,例如:
http://localhost/barcode/test.php?codebar=BCGcode39&text=20090729
或运转http://localhost/barcode/mytest.php
mytest.php代码:
- <img src="test.php?codebar=BCGcode39&text=20090729">
复制代码 [/code]
PHP5生成条形码test.php代码:
- <?php // Including all required classes require('class/BCGFont.php'); require('class/BCGColor.php'); require('class/BCGDrawing.php'); /*'BCGcodabar','BCGcode11','BCGcode39','BCGcode39extended','BCGcode93', 'BCGcode128','BCGean8','BCGean13','BCGisbn','BCGi25','BCGs25','BCGmsi', 'BCGupca','BCGupce','BCGupcext2','BCGupcext5','BCGpostnet','BCGothercode'*/ $codebar = $_REQUEST['codebar']; //该软件撑持
的一切
编码,只需调剂
$codebar参数便可
。 // Including the barcode technology include('class/'.$codebar.'.barcode.php'); // Loading Font $font = new BCGFont('./class/font/Arial.ttf', 10); // The arguments are R, G, B for color. $color_black = new BCGColor(0, 0, 0); $color_white = new BCGColor(255, 255, 255); $code = new $codebar(); $code->setScale(2); // Resolution $code->setThickness(30); // Thickness $code->setForegroundColor($color_black); // Color of bars $code->setBackgroundColor($color_white); // Color of spaces $code->setFont($font); // Font (or 0) $text = $_REQUEST['text']; //PHP5生成条形码将要数据的内容 $code->parse($text); /* Here is the list of the arguments 1 - Filename (empty : display on screen) 2 - Background color */ $drawing = new BCGDrawing('', $color_white); $drawing->setBarcode($code); $drawing->draw(); // Header that says it is an image (remove it if you save the barcode to a file) header('Content-Type: image/png'); // Draw (or save) the image into PNG format. $drawing->finish(BCGDrawing::IMG_FORMAT_PNG); ?>
复制代码 [/code] 在运转过程当中呈现异常";
throw $e; //重掷异常
}
}
?
终于理解了数据库的概念,而且让你兴奋不已的是你终于可以通过PHP来连接数据库了,这期间你是怎么学会的,我们不去考证了,但是事实证明,你已经可以了。 |
|