php+扫描条码,PHP条形码图像生成器

news/2024/11/2 2:30:57/

这是一个用于生成barocdes的简单

PHP脚本:

//For displaying barcodes

//Arguments are:

// code Number you want outputted as a barcode

//You can use this script in two ways:

// From a webpage/PHP script barcode.PHP?code=12345

// Directly in your web browser http://www.example.com/images/barcode.PHP?code=12345

//Outputs the code as a barcode,surrounded by an asterisk (as per standard)

//Will only output numbers,text will appear as gaps

//Image width is dynamic,depending on how much data there is

//Get the barcode font (called 'free3of9') from here http://www.barcodesinc.com/free-barcode-font/

header("Content-type: image/png");

$file = "images/barcode.png"; // path to base png image

$im = imagecreatefrompng($file); // open the blank image

$string = $_GET['code']; // get the code from URL

imagealphablending($im,true); // set alpha blending on

imagesavealpha($im,true); // save alphablending setting (important)

$black = imagecolorallocate($im,0); // colour of barcode

$font_height=40; // barcode font size. anything smaller and it will appear jumbled and will not be able to be read by scanners

$newwidth=((strlen($string)*20)+41); // allocate width of barcode. each character is 20px across,plus add in the asterisk's

$thumb = imagecreatetruecolor($newwidth,40); // generate a new image with correct dimensions

imagecopyresized($thumb,$im,$newwidth,40,10,10); // copy image to thumb

imagettftext($thumb,$font_height,1,$black,'c:\windows\fonts\free3of9.ttf','*'.$string.'*'); // add text to image

//show the image

imagepng($thumb);

imagedestroy($thumb);

?>

希望这可以帮助你.


http://www.ppmy.cn/news/686250.html

相关文章

批量生成条形码——《超级处理器》应用

怎么批量生成条形码呢,看起来挺复杂的问题,我们用《超级处理器》,只需要简单的四步,具体操作如下: 操作流程 1-4 第一步,打开超级处理器菜单; 第二步,点击条形码工具; …

条形码转化成二维码_免费在线条形码生成器_村美小站

在线条形码生成器 Code128A Code128B Code128C Code128 自动 EAN128 Code39 Code93 EAN-13商品条码 EAN-8商品条码 UPC-A商品条码 UPC-E商品条码 库德巴码 交叉25码(ITF) 交叉25码(ITF 带横框) 交叉25码(ITF 带方框) 工业25条码 矩阵25条码 Code11条码 Code11条码(有校验) MSI条…

RFID条形码标签软件丨CODESOFT功能简介

RFID和条形码标签软件,铺就企业成功的基石 1、先进的条形码标签创建与集成 2、智能的用户界面 3、稳健可靠的数据库连接 4、100多种条形码符号体系 5、集标签和文档打印于一体 6、与企业级解决方案兼容 CODESOFT概述 01、提高效率 借助 CODESOFT 提供帮助的向…

可视化报告生成器FastReport VCL创建条形码教程指南

报表生成器FastReport VCL是用于在软件中集成商务智能的现代解决方案。它提供了可视化模板设计器,可以访问最受欢迎的数据源,报告引擎,预览,将过滤器导出为30多种格式,并可以部署到云,Web,电子邮…

条形码转化成二维码_在线条形码生成器

条形码生成器介绍 使用方法: 选择生成规则,一般选择code128,然后在输入框输入字母或者数字,点击生成即可生成对应的条形码,注意,只能输入字母或者数字 Code 39与code 128条形码的区别 CODE 39码的编码规则是…

EAN13条形码生成器(C++)

活动地址:毕业季进击的技术er 夏日炎炎,热浪中我们迎来毕业季,这是告别,也是迈向新起点的开始,CSDN诚邀各毕业生/在校生/职场人讲述自己的毕业季故事,分享自己的经验,技术er的进击之路&#xff…

AD9680+JESD204B接口+FPGA FMC高速率数据采集板卡

板卡概述: 【FMC_XM155】 FMC_XM155 是一款基于 VITA57.1 标准的,实现 2 路 14-bit、500MSPS/1GSPS/1.25GSPS 直流耦合 ADC 同步采集 FMC 子卡模 块。 该模块遵循 VITA57.1 规范,可直接与 FPGA 载卡配合使用,板 卡 ADC 器件采用…

利用条形码生成器在Word 2013中轻松制作条形码的方法

今天小编发现了一个好玩的Word 2013应用程序“条形码生成器”。打开Office 2013应用程序>CODE 39 Barcode>Add>点击Word中Office应用程序>选择应用程序>插入。 你第一个想生成的条形码是? 1、启动Word 2013程序,单击“插入”--“Office应用程序”…