文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

thinkphp5+barcode生成条形码的示例分析

2023-06-06 17:15

关注

小编给大家分享一下thinkphp5+barcode生成条形码的示例分析,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!

thinkphp5 + barcode 生成条形码

thinkphp5+barcode生成条形码的示例分析

去官网下载类库 “[https://www.barcodebakery.com...]”,选择自己的版本下载

thinkphp5+barcode生成条形码的示例分析

解压放到“E:\phpstudy\PHPTutorial\WWW\guahao\vendor\下”,其中class文件是所有的类文件,生成条形码就是调用文件夹里的类,font文件是字体,index.php是一个可选择条件生成条形码的功能,是主程序的入口,test_1D.php是给的生成条形码的例子,test_1D.html是对应的渲染条形码的页面

thinkphp5+barcode生成条形码的示例分析

我们可以直接使用官方给的例子(test_1D.php),复制到自己需要用的地方,然后根据自己的需求稍加改动即可,需要注意的是,加载第三方类库的路径需要改一下。

生成条形码的php代码

<?phpnamespace app\index\controller;use think\Controller;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是同一级文件夹        $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;        }                $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')}">

thinkphp5+barcode生成条形码的示例分析

当然,src还可以携带参数,只需更改以下代码

html代码

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

php代码把

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

改成

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

如果想把条形码保存到本地,在实例化“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;        }                // 保存到本地 (路径,颜色)路径为空则表示显示到页面上        $drawing = new \BCGDrawing($imgUrl, $color_white);        if($drawException) {            $drawing->drawException($drawException);        } else {            $drawing->setBarcode($code);            $drawing->draw();        }        $drawing->finish(\BCGDrawing::IMG_FORMAT_PNG);

生成条形码之后,怎么判定条形码是否能用呢?

可以把条形码保存成图片到本地,打开官网“[https://www.barcodebakery.com/en/download]”,上传刚刚生成的条形码,如果解析出的参数跟你输入的一样,说明条形码可以用。

thinkphp5+barcode生成条形码的示例分析

以上是“thinkphp5+barcode生成条形码的示例分析”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注编程网行业资讯频道!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯