PHP QR Code

授权协议 LGPL
开发语言 PHP
所属分类 程序开发、 条形码/二维码
软件类型 开源软件
地区 不详
投 递 者 仉运乾
操作系统 跨平台
开源组织
适用人群 未知
 软件概览

PHP QR Code 是 PHP 用来处理二维条形码的开发包。基于 C 语言的 libqrencode 库开发,提供生成二维条形码功能,包括 PNG、JPG 格式。使用纯 PHP 实现,无需依赖第三方包,除了 GD2 除外。

示例代码:

QRcode::png('code data text', 'filename.png'); // creates file
QRcode::png('some othertext 1234'); // creates code image and outputs it directly into browser

主要特性:

  • Supports QR Code versions (size) 1-40
  • Numeric, Alphanumeric, 8-bit and Kanji encoding. (Kanji encoding was not fully tested, if you are japan-encoding enabled you cen contribute by verifing it :) )
  • Implemented purely in PHP, no external dependencies except GD2
  • Exports to PNG, JPEG images, also exports as bit-table
  • TCPDF 2-D barcode API integration
  • Easy to configure
  • Data cache for calculation speed-up
  • Provided merge tool helps deploy library as a one big dependency-less file, simple to "include and do not wory"
  • Debug data dump, error logging, time benchmarking
  • 100% Open Source, LGPL Licensed
  • phpqrcode/bindings/tcpdf/qrcode.php phpqrcode/cache/frame_1.dat phpqrcode/cache/frame_1.png phpqrcode/cache/frame_10.dat phpqrcode/cache/frame_10.png phpqrcode/cache/frame_11.dat phpqrcode/cache/frame

  • 使用PHP二维码生成类库PHP QR Code生成二维码   PHP QR Code是一个PHP二维码生成类库,利用它可以轻松生成二维码,官网提供了下载和多个演示demo,查看地址:http://phpqrcode.sourceforge.net/。 下载官网提供的类库后,只需要使用phpqrcode.php就可以生成二维码了,当然您的PHP环境必须开启支持GD2。 phpqrcode.php提供

  • http://phpqrcode.sourceforge.net/examples/index.php   http://phpqrcode.sourceforge.net/examples/index.php?example=027

  • php类库PHP QR Code PHP QR Code is open source (LGPL) library for generating QR Code,  2-dimensional barcode. Based on libqrencode C library,  provides API for creating QR Code barcode images (PNG, JPEG

  • public function qrcode() { $path = '保存目录'; $file = '保存文件名'; //判断二维码文件是否存在 if (!file_exists($path.$file)){ //判断目录是否存在,不存在创建目录 if (!file_exists($p

  •   1,浏览器输出:    代码示例: <?  include "phpqrcode/phpqrcode.php";  $value="http://www.";  $errorCorrectionLevel = "L";  $matrixPointSize = "4";  QRcode::png($value, false, $errorCorrectionLevel, $matrixPoint

 相关资料
  • 本文向大家介绍Thinkphp3.2.3整合phpqrcode生成带logo的二维码,包括了Thinkphp3.2.3整合phpqrcode生成带logo的二维码的使用技巧和注意事项,需要的朋友参考一下 Thinkphp中没有二维码相关的库,因此我们可以通过整合phpqrcode来完成生成二维码的功能。 下载phpqrcode 下载地址:http://phpqrcode.sourceforge.n

  • 本文向大家介绍PHP基于phpqrcode类库生成二维码过程解析,包括了PHP基于phpqrcode类库生成二维码过程解析的使用技巧和注意事项,需要的朋友参考一下 phpqrcode类库官网下载地址: https://sourceforge.net/projects/phpqrcode/ 1.我们先看看php是怎么生成二维码的     1.首先我们先下载一下 phpqrcode 类库。   2.下

相关阅读

相关文章

相关问答

相关文档