thinkphp如何生成条形码? 100
PHP我倒会,网上也很多例子。但是在Thinkphp里面不知道怎么应用。我下载了barcodegen.1d-php5.v5.2.1类库包。但是这里的类库命名很复杂,也很难...
PHP我倒会,网上也很多例子。但是在Thinkphp里面不知道怎么应用。我下载了 barcodegen.1d-php5.v5.2.1 类库包。但是这里的类库命名很复杂,也很难用Vendor方法来导入。
我尝试改名字导入,但还是不行。请各位高手给予帮助,谢谢了。 展开
我尝试改名字导入,但还是不行。请各位高手给予帮助,谢谢了。 展开
2个回答
AiPPT
2024-09-19 广告
2024-09-19 广告
作为北京饼干科技有限公司的工作人员,关于AIPPT免费生成PPT的功能,我可以简要介绍如下:AIPPT是一款基于人工智能技术的PPT制作工具,它为用户提供了免费生成PPT的便捷服务。用户只需简单输入PPT的主题或内容大纲,AIPPT便能智能...
点击进入详情页
本回答由AiPPT提供
展开全部
require('barcodegen/class/BCGFont.php');
require('barcodegen/class/BCGColor.php');
require('barcodegen/class/BCGDrawing.php');
// Including the barcode technology
include('barcodegen/class/BCGcode39.barcode.php');
// Loading Font
$font = new BCGFont('./class/font/Arial.ttf', 16);
//var_dump($font);exit;
// The arguments are R, G, B for color.
$color_black = new BCGColor(0, 0, 0);
$color_white = new BCGColor(255, 255, 255);
$code = new BCGcode39();
$code->setScale(2);
$code->setThickness(30);
$code->setForegroundColor($color_black); // Color of bars
$code->setBackgroundColor($color_white); // Color of spaces
$code->setFont($font); // Font (or 0)
//var_dump($font);exit;
$code->parse('AA000123BB');
$drawing = new BCGDrawing("", $color_white);
$drawing->setBarcode($code);
$drawing->draw();
header('Content-Type: image/png');
$drawing->finish(BCGDrawing::IMG_FORMAT_PNG);
把下载包放在同级目录也可以用
require('barcodegen/class/BCGColor.php');
require('barcodegen/class/BCGDrawing.php');
// Including the barcode technology
include('barcodegen/class/BCGcode39.barcode.php');
// Loading Font
$font = new BCGFont('./class/font/Arial.ttf', 16);
//var_dump($font);exit;
// The arguments are R, G, B for color.
$color_black = new BCGColor(0, 0, 0);
$color_white = new BCGColor(255, 255, 255);
$code = new BCGcode39();
$code->setScale(2);
$code->setThickness(30);
$code->setForegroundColor($color_black); // Color of bars
$code->setBackgroundColor($color_white); // Color of spaces
$code->setFont($font); // Font (or 0)
//var_dump($font);exit;
$code->parse('AA000123BB');
$drawing = new BCGDrawing("", $color_white);
$drawing->setBarcode($code);
$drawing->draw();
header('Content-Type: image/png');
$drawing->finish(BCGDrawing::IMG_FORMAT_PNG);
把下载包放在同级目录也可以用
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询