ホームページ  >  記事  >  PHPフレームワーク  >  thinkphp5 + バーコードを生成するバーコードメソッド

thinkphp5 + バーコードを生成するバーコードメソッド

藏色散人
藏色散人転載
2020-04-12 14:47:182827ブラウズ

1. 公式 Web サイトにアクセスしてクラス ライブラリ "https://www.barcodebakery.com/en/download" をダウンロードし、独自のバージョンを選択してダウンロードします。 ## 推奨チュートリアル:

thinkphp チュートリアル

thinkphp5 + バーコードを生成するバーコードメソッド

2. 解凍して「E:\phpstudy\PHPTutorial\WWW\guahao\vendor\」の下に配置します。ここで、クラス ファイルはすべてのクラスですクラスではフォントファイルがフォント、index.phpは任意の条件でバーコードを生成する関数で、メインプログラムへの入り口となります。test_1D.phpは例です。 test_1D.html はバーコードのレンダリングに対応するページです

##3。公式のサンプル (test_1D.php) を直接使用して、それを次の場所にコピーできます。サードパーティのクラス ライブラリをロードするパスを変更する必要があることに注意してください。

バーコードを生成するための PHP コード

<?php
namespace app\index\controller;
use think\Controller;
/**
* 条形码操作类
*/
class Barcode extends Controller
{
    public function createBarcode()
    {
        $class_dir = VENDOR_PATH.&#39;barcode/class/&#39;;
        // Including all required classes
        require_once($class_dir.&#39;BCGFontFile.php&#39;);
        require_once($class_dir.&#39;BCGColor.php&#39;);
        require_once($class_dir.&#39;BCGDrawing.php&#39;);
        require_once($class_dir.&#39;BCGcode39.barcode.php&#39;);
        // Loading Font
        // 注意font和class是同一级文件夹
        $font = new \BCGFontFile(VENDOR_PATH.&#39;barcode/font/Arial.ttf&#39;, 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[&#39;text&#39;]) ? $_GET[&#39;text&#39;] : &#39;HELLO&#39;;
            $code->parse($text); // Text
        } catch(Exception $exception) {
            $drawException = $exception;
        }
        /* Here is the list of the arguments
        1 - Filename (empty : display on screen)
        2 - Background color */
        $drawing = new \BCGDrawing(&#39;&#39;, $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(&#39;Content-Type: image/png&#39;);
        header(&#39;Content-Disposition: inline; filename="barcode.png"&#39;);
        // Draw (or save) the image into PNG format.
        $drawing->finish(\BCGDrawing::IMG_FORMAT_PNG);
    }
    public function barcodedes()
    {
        return $this->fetch();
    }
}
?>
thinkphp5 + バーコードを生成するバーコードメソッドバーコードをレンダリングするための Html コードを受け入れます

<img  src="{:url(&#39;createBarcode&#39;)}" alt="thinkphp5 + バーコードを生成するバーコードメソッド" >

もちろん、srcパラメータも指定できます。次のコードを変更するだけです。

html code

<img  src="{:url(&#39;createBarcode&#39;,array(&#39;text&#39;= alt="thinkphp5 + バーコードを生成するバーコードメソッド" >&#39;123&#39;))}">
thinkphp5 + バーコードを生成するバーコードメソッドphp code

change

$text = isset($_GET[&#39;text&#39;]) ? $_GET[&#39;text&#39;] : &#39;HELLO&#39;;

$text = input(&#39;text&#39;);      //接收的参数
## に変更します。 #4 . バーコードをローカルに保存したい場合は、「BCGDrawing」をインスタンス化するときに保存パスを入力するだけです

// 文件路径
        $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是同一级文件夹
        $font = new \BCGFontFile(VENDOR_PATH.'barcode/font/Arial.ttf', 18);
        // Don't forget to sanitize user inputs
        // $text = isset($_GET[&#39;text&#39;]) ? $_GET[&#39;text&#39;] : &#39;HELLO&#39;;
        // 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(&#39;text&#39;);      //接收的参数
            $text = isset($text) ? $text :'无参数';      
            $code->parse($text); // Text
        } catch(Exception $exception) {
            $drawException = $exception;
        }
        /* Here is the list of the arguments
        1 - Filename (empty : display on screen)
        2 - Background color */
        // 保存到本地 (路径,颜色)路径为空则表示显示到页面上
        $drawing = new \BCGDrawing($imgUrl, $color_white);
        if($drawException) {
            $drawing->drawException($drawException);
        } else {
            $drawing->setBarcode($code);
            $drawing->draw();
        }
        $drawing->finish(\BCGDrawing::IMG_FORMAT_PNG);

5. バーコードを生成した後、バーコードが保存できるかどうかを判断する方法利用される?バーコードを画像としてローカルに保存し、公式 Web サイト「https://www.onlinebarcodereader.com/」を開いて、生成されたばかりのバーコードをアップロードすることができます。解析されたパラメーターが入力したものと同じである場合、それは、バーコードが使用できます。

以上がthinkphp5 + バーコードを生成するバーコードメソッドの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事はcnblogs.comで複製されています。侵害がある場合は、admin@php.cn までご連絡ください。