首页| 新闻| 娱乐| 游戏| 科普| 文学| 编程| 系统| 数据库| 建站| 学院| 产品| 网管| 维修| 办公| 热点
本文实例讲述了thinkPHP框架实现生成条形码的方法。分享给大家供大家参考,具体如下:
在做之前我们先下载barcode类,想下载该类可以点击此处本站下载。
我们在后台写一个方法代码如下:
//生成条形码public function barcode(){ import('@.ORG.Util.barcode.BCGFontFile');//字体类 import('@.ORG.Util.barcode.BCGColor');//字体颜色类 import('@.ORG.Util.barcode.BCGDrawing'); import('@.ORG.Util.barcode.BCGcode39'); $text = $_GET['text']; $texts = isset($text)?$text:'00000000000'; $color_black = new /BCGColor(0,0,0); $color_white = new /BCGColor(255,255,255); $drawException = null; try { $code = new /BCGcode39(); $code->setScale(2); $code->setThickness(30); $code->setForegroundColor($color_black); $code->setBackgroundColor($color_white); $code->parse($texts); } catch(Exception $exception) { $drawException = $exception; } $drawing = new /BCGDrawing('', $color_white); if($drawException) { $drawing->drawException($drawException); } else { $drawing->setBarcode($code); $drawing->draw(); } header('Content-Type: image/png'); header('Content-Disposition: inline; filename="barcode.png"'); $drawing->finish(/BCGDrawing::IMG_FORMAT_PNG);}
在前台直接调用:
<img src="{:U('ContractCommonApply/barcode')}/text/{$res[0]['ContractCode']}" style="margin: 0px; padding: 0px; outline: none; line-height: 25.2px; font-size: 14px; width: 660px; overflow: hidden; clear: both; font-family: tahoma, arial, "Microsoft YaHei";"> <script type="text/javascript" language="JavaScript"> document.writeln("<img src=/目录/test_1D.php?text=内容 />");</script>
<script type="text/javascript" language="JavaScript"> document.writeln("<img src=/目录/test_1D.php?text=内容 />");</script>
希望本文所述对大家基于ThinkPHP框架的PHP程序设计有所帮助。
Intel工程样品CPU的识别方法
图解CMOS路线和硬盘光驱跳线的
硬盘分区如何设置准确的分区空间
回眸一笑百魅生,六宫粉黛无颜色
岁月静美,剪一影烟雨江南
芜湖有个“松鼠小镇”
小满:小得盈满,一切刚刚好!
一串串晶莹剔透的葡萄,像一颗颗宝石挂在藤
正宗老北京脆皮烤鸭
人逢知己千杯少,喝酒搞笑图集
搞笑试卷,学生恶搞答题
新闻热点
疑难解答
图片精选
网友关注