ホームページ  >  記事  >  PHPフレームワーク  >  thinkphp5+barcode バーコード生成の詳細な図解説明

thinkphp5+barcode バーコード生成の詳細な図解説明

藏色散人
藏色散人転載
2021-03-03 15:47:262111ブラウズ

次のチュートリアル コラムでは、バーコードを生成するための thinkphp5 バーコードについて紹介します。困っている友人の役に立てば幸いです。 #thinkphp5 バーコードはバーコードを生成します

##1 、公式 Web サイトにアクセスしてクラス ライブラリ "[https://www.barcodebakery.com...]" をダウンロードし、独自のバージョンを選択してダウンロードします。thinkphp5+barcode バーコード生成の詳細な図解説明

2、解凍して「E :\phpstudy\PHPTutorial\WWW\guahao\vendor\」に置きます。クラスファイルはすべてのクラスファイルです。バーコードの生成はフォルダー内のクラスを呼び出し、フォントファイルはフォントです。 Index.php はバーコードを生成するためのオプションの条件です Function はメイン プログラムへの入り口です test_1D.php はバーコード生成の例であり、test_1D.html はバーコードをレンダリングするための対応するページです

thinkphp5+barcode バーコード生成の詳細な図解説明

#3. 直接使用できます 公式サンプル (test_1D.php) を使用する必要がある場所にコピーし、必要に応じて少し変更します。サードパーティライブラリのロードを変更する必要があります。

thinkphp5+barcode バーコード生成の詳細な図解説明バーコード用の 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['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  alt="thinkphp5+barcode バーコード生成の詳細な図解説明" >

もちろん、srcパラメータを運ぶこともできます。次のコード

thinkphp5+barcode バーコード生成の詳細な図解説明html code

<img  alt="thinkphp5+barcode バーコード生成の詳細な図解説明" >'123'))}">

php コードを変更して、

$text = isset($_GET['text']) ? $_GET['text'] : 'HELLO';
を変更するだけです。

$text = input('text');      //接收的参数
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['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');      //接收的参数
            $text = isset($text) ? $text :'无参数';      
            $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($imgUrl, $color_white);
        if($drawException) {
            $drawing->drawException($drawException);
        } else {
            $drawing->setBarcode($code);
            $drawing->draw();
        }
        $drawing->finish(\BCGDrawing::IMG_FORMAT_PNG);
5. バーコードを生成した後、バーコードがローカルに保存されているかどうかを確認する方法に使える? ?

バーコードを画像としてローカルに保存し、公式 Web サイト「[https://www.barcodebakery.com/en/download]」を開いて、生成したばかりのバーコードをアップロードできます。入力したものと一致します。 「同じ」。バーコードが使用できることを示します。

thinkphp5+barcode バーコード生成の詳細な図解説明関連する推奨事項:

最新の 10 件の thinkphp ビデオ チュートリアル

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

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