>  기사  >  PHP 프레임워크  >  thinkphp5+바코드 생성 바코드에 대한 자세한 그래픽 설명

thinkphp5+바코드 생성 바코드에 대한 자세한 그래픽 설명

藏色散人
藏色散人앞으로
2021-03-03 15:47:262111검색

다음 튜토리얼 칼럼인 thinkphp에서는 thinkphp5 + 바코드를 사용하여 바코드를 생성하는 방법을 소개합니다. 도움이 필요한 친구들에게 도움이 되길 바랍니다!

thinkphp5 + 바코드는 바코드를 생성합니다

thinkphp5+바코드 생성 바코드에 대한 자세한 그래픽 설명

1. 공식 웹사이트로 이동하여 클래스 라이브러리 "[https://www.barcodebakery.com...]"을 다운로드하고 선택합니다. 자신만의 버전을 다운로드하세요

thinkphp5+바코드 생성 바코드에 대한 자세한 그래픽 설명

2. 압축을 풀고 "E:phpstudyPHPTutorialWWWguahaovendor"에 넣으세요. 여기서 클래스 파일은 모두 클래스 파일이고, 바코드를 생성하는 것은 폴더에 있는 클래스를 호출하는 것이고, 글꼴 파일은 index.php는 바코드 생성을 위한 선택조건입니다. 함수는 메인 프로그램으로의 진입입니다. test_1D.php는 바코드 생성 예제이고, test_1D.html은 바코드 렌더링을 위한 해당 페이지입니다

thinkphp5+바코드 생성 바코드에 대한 자세한 그래픽 설명

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['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+바코드 생성 바코드에 대한 자세한 그래픽 설명" >

thinkphp5+바코드 생성 바코드에 대한 자세한 그래픽 설명

물론 src도 매개변수를 전달할 수 있습니다. 다음 코드를 변경하세요

html 코드

<img  alt="thinkphp5+바코드 생성 바코드에 대한 자세한 그래픽 설명" >'123'))}">

php 코드

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

$text = input('text');      //接收的参数

4로 변경되었습니다. 바코드를 로컬에 저장하려면 "BCG Drawing"을 인스턴스화할 때 저장 경로를 입력하면 됩니다_

// 文件路径
        $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. 바코드 생성 후 확인 방법. 사용된? ?

바코드를 로컬에 사진으로 저장한 후 공식 홈페이지 "[https://www.barcodebakery.com/en/download]"를 열고 방금 생성된 바코드를 업로드하면 됩니다. 입력하신 내용은 바코드를 의미하므로 사용이 가능합니다.

thinkphp5+바코드 생성 바코드에 대한 자세한 그래픽 설명

위 내용은 thinkphp5+바코드 생성 바코드에 대한 자세한 그래픽 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
이 기사는 segmentfault.com에서 복제됩니다. 침해가 있는 경우 admin@php.cn으로 문의하시기 바랍니다. 삭제