日日操夜夜添-日日操影院-日日草夜夜操-日日干干-精品一区二区三区波多野结衣-精品一区二区三区高清免费不卡

公告:魔扣目錄網(wǎng)為廣大站長(zhǎng)提供免費(fèi)收錄網(wǎng)站服務(wù),提交前請(qǐng)做好本站友鏈:【 網(wǎng)站目錄:http://www.ylptlb.cn 】, 免友鏈快審服務(wù)(50元/站),

點(diǎn)擊這里在線咨詢(xún)客服
新站提交
  • 網(wǎng)站:51998
  • 待審:31
  • 小程序:12
  • 文章:1030137
  • 會(huì)員:747

下面給大家介紹thinkphp5 + barcode 生成條形碼,希望對(duì)需要的朋友有所幫助!

thinkphp5 + barcode 生成條形碼


603f48cca792f.png


1、去官網(wǎng)下載類(lèi)庫(kù) “[https://www.barcodebakery.com...]”,選擇自己的版本下載


603f48fc5c286.png


2、解壓放到“E:\phpstudy\PHPTutorial\WWW\guahao\vendor\下”,

其中class文件是所有的類(lèi)文件,生成條形碼就是調(diào)用文件夾里的類(lèi),font文件是字體,index.php是一個(gè)可選擇條件生成條形碼的功能,是主程序的入口,test_1D.php是給的生成條形碼的例子,test_1D.html是對(duì)應(yīng)的渲染條形碼的頁(yè)面


603f493c1e4fb.png


3、我們可以直接使用官方給的例子(test_1D.php),復(fù)制到自己需要用的地方,然后根據(jù)自己的需求稍加改動(dòng)即可,需要注意的是,加載第三方類(lèi)庫(kù)的路徑需要改一下。


生成條形碼的php代碼


<?php
namespace app\index\controller;
use think\Controller;
 
/**
* 條形碼操作類(lèi)
*/
class Barcode extends Controller
{
    public function createBarcode()
    {
        $class_dir = VENDOR_PATH.'barcode/class/';
        // Including all required classes
        require_once($class_dir.'BCGFontFile.php');
        require_once($class_dir.'BCGColor.php');
        require_once($class_dir.'BCGDrawing.php');
        require_once($class_dir.'BCGcode39.barcode.php');
 
        // Loading Font
        // 注意font和class是同一級(jí)文件夾
        $font = new \BCGFontFile(VENDOR_PATH.'barcode/font/Arial.ttf', 18);// The arguments are R, G, B for color.
        $color_black = new \BCGColor(0, 0, 0);
        $color_white = new \BCGColor(255, 255, 255);
 
        $drawException = null;
        try {
            $code = new \BCGcode39();
            $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)  0不顯示文字
         $text = isset($_GET['text']) ? $_GET['text'] : 'HELLO';
            $code->parse($text); // Text
        } catch(Exception $exception) {
            $drawException = $exception;
        }
 
        /* Here is the list of the arguments
        - Filename (empty : display on screen)
        - Background color */
        $drawing = new \BCGDrawing('', $color_white);
        if($drawException) {
            $drawing->drawException($drawException);
        } else {
            $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');
        header('Content-Disposition: inline; filename="barcode.png"');
 
        // Draw (or save) the image into PNG format.
        $drawing->finish(\BCGDrawing::IMG_FORMAT_PNG);
 
    }
 
    public function barcodedes()
    {
        return $this->fetch();
    }
}
?>

接受渲染條形碼的Html代碼

<img src="{:url('createBarcode')}">


603f49e7c95a7.png


當(dāng)然,src還可以攜帶參數(shù),只需更改以下代碼

html代碼

<img src="{:url('createBarcode',array('text'=>'123'))}">

php代碼把

$text = isset($_GET['text']) ? $_GET['text'] : 'HELLO';

改成

$text = input('text');      //接收的參數(shù)


4、如果想把條形碼保存到本地,在實(shí)例化“BCGDrawing”的時(shí)候_填寫(xiě)保存路徑即可_

// 文件路徑
$file_dir = 'uploads/barcode/'.date('Y-m-d');
if (!file_exists($file_dir)) {
    mkdir($file_dir,0755,true);
}
$imgUrl = $file_dir.'/'.time().'.png';
$class_dir = VENDOR_PATH.'barcode/class/';
// Including all required classes
require_once($class_dir.'BCGFontFile.php');
require_once($class_dir.'BCGColor.php');
require_once($class_dir.'BCGDrawing.php');
require_once($class_dir.'BCGcode39.barcode.php');
// Loading Font
// 注意font和class是同一級(jí)文件夾
$font = new \BCGFontFile(VENDOR_PATH.'barcode/font/Arial.ttf', 18);
// Don't forget to sanitize user inputs
// $text = isset($_GET['text']) ? $_GET['text'] : 'HELLO';
// The arguments are R, G, B for color.
$color_black = new \BCGColor(0, 0, 0);
$color_white = new \BCGColor(255, 255, 255);
$drawException = null;
try {
    $code = new \BCGcode39();
    $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 = input('text');      //接收的參數(shù)
    $text = isset($text) ? $text :'無(wú)參數(shù)';      
    $code->parse($text); // Text
} catch(Exception $exception) {
    $drawException = $exception;
}
/* Here is the list of the arguments
- Filename (empty : display on screen)
- Background color */
// 保存到本地 (路徑,顏色)路徑為空則表示顯示到頁(yè)面上
$drawing = new \BCGDrawing($imgUrl, $color_white);
if($drawException) {
    $drawing->drawException($drawException);
} else {
    $drawing->setBarcode($code);
    $drawing->draw();
}
$drawing->finish(\BCGDrawing::IMG_FORMAT_PNG);

5、生成條形碼之后,怎么判定條形碼是否能用呢?

可以把條形碼保存成圖片到本地,打開(kāi)官網(wǎng)“[https://www.barcodebakery.com/en/download]”,上傳剛剛生成的條形碼,如果解析出的參數(shù)跟你輸入的一樣,說(shuō)明條形碼可以用。

603f4a899dbbf.png


分享到:
標(biāo)簽:thinkphp5 barcode 生成條形碼
用戶無(wú)頭像

網(wǎng)友整理

注冊(cè)時(shí)間:

網(wǎng)站:5 個(gè)   小程序:0 個(gè)  文章:12 篇

  • 51998

    網(wǎng)站

  • 12

    小程序

  • 1030137

    文章

  • 747

    會(huì)員

趕快注冊(cè)賬號(hào),推廣您的網(wǎng)站吧!
最新入駐小程序

數(shù)獨(dú)大挑戰(zhàn)2018-06-03

數(shù)獨(dú)一種數(shù)學(xué)游戲,玩家需要根據(jù)9

答題星2018-06-03

您可以通過(guò)答題星輕松地創(chuàng)建試卷

全階人生考試2018-06-03

各種考試題,題庫(kù),初中,高中,大學(xué)四六

運(yùn)動(dòng)步數(shù)有氧達(dá)人2018-06-03

記錄運(yùn)動(dòng)步數(shù),積累氧氣值。還可偷

每日養(yǎng)生app2018-06-03

每日養(yǎng)生,天天健康

體育訓(xùn)練成績(jī)?cè)u(píng)定2018-06-03

通用課目體育訓(xùn)練成績(jī)?cè)u(píng)定