Home > Article > Backend Development > thinkPHP framework implements method of generating barcodes
This article mainly introduces the method of generating barcodes in the thinkPHP framework, and analyzes the related operating techniques of thinkPHP combined with third-party barcode class files to generate barcodes in the form of examples. Friends in need can refer to the examples of this article
Describes how the thinkPHP framework implements barcode generation. Share it with everyone for your reference, the details are as follows:
Before we do it, we first download the barcode class. If you want to download this class, you can click hereDownload from this site.
We write a method code in the background as follows:
//生成条形码 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); }
Call it directly in the foreground:
<img src="{:U('ContractCommonApply/barcode')}/text/{$res[0]['ContractCode']}" alt="">
Use js to call the code as follows:
<script type="text/javascript" language="JavaScript"> document.writeln("<img src=/目录/test_1D.php?text=内容 />"); </script>
Related recommendations:
Solution to ThinkPHP automatic verification failure
The above is the detailed content of thinkPHP framework implements method of generating barcodes. For more information, please follow other related articles on the PHP Chinese website!