`

QR code类库

阅读更多
Google code发现的好东西。


QR code 类库: http://code.google.com/p/zxing/




ZXing (pronounced "zebra crossing") is an open-source, multi-format 1D/2D barcode image processing library implemented in Java. Our focus is on using the built-in camera on mobile phones to photograph and decode barcodes on the device, without communicating with a server. We currently have support for:



UPC-A and UPC-E

EAN-8 and EAN-13

Code 39

Code 93

Code 128

QR Code

ITF

Codabar

RSS-14 (all variants)

Data Matrix ('alpha' quality)

PDF 417 ('alpha' quality)

This library is divided into several components; some are actively supported:



core: The core image decoding library, and test code

javase: J2SE-specific client code

android: Android client, called Barcode Scanner

androidtest: Android test app

android-integration: Supports integration with our Barcode Scanner app via Intent

zxingorg: The source behind zxing.org/w

zxing.appspot.com: The source behind our web-based barcode generator

Some modules are contributed and/or intermittently maintained:



javame: JavaME client

csharp: Partial C# port

cpp: Partial C++ port

rim: RIM/Blackberry-specific client build

iphone: iPhone client + port to Objective C / C++ (QR code only)

bug: Client for BugLabs's BUG

jruby: Ruby wrapper

actionscript: partial port to Actionscript




To complement our decoding software, we have created a web-based QR Code generator which supports contact information, calendar events, URLs, and much more.
分享到:
评论
4 楼 贝壳水母 2010-06-11  
有个地方需要注意下,直接调用该项目的QR码自动生成方法
(如:
QRCodeWriter_ED qrwriter = new QRCodeWriter_ED();
ByteMatrix matrix = qrwriter.encode("source", BarcodeFormat.QR_CODE, 200, 200,hints);MatrixToImageWriter.writeToFile(matrix, "png", file);

)
时,生成的图像是黑白颠倒的,以下是我改动后的QRCodeWriter类,修改后图像正常了
不知道各位有没有遇过这个问题,具体缘由以及是否会对其他方法有影响我不清楚,请指教

/*     */ package com.google.zxing.qrcode;
/*     */ 
/*     */ import com.google.zxing.BarcodeFormat;
/*     */ import com.google.zxing.EncodeHintType;
/*     */ import com.google.zxing.Writer;
/*     */ import com.google.zxing.WriterException;
/*     */ import com.google.zxing.common.ByteMatrix;
/*     */ import com.google.zxing.qrcode.decoder.ErrorCorrectionLevel;
/*     */ import com.google.zxing.qrcode.encoder.Encoder;
/*     */ import com.google.zxing.qrcode.encoder.QRCode;
/*     */ import java.util.Hashtable;
/*     */ 
/*     */ public final class QRCodeWriter_ED
/*     */   implements Writer
/*     */ {
/*     */   private static final int QUIET_ZONE_SIZE = 4;
/*     */ 
/*     */   public ByteMatrix encode(String contents, BarcodeFormat format, int width, int height)
/*     */     throws WriterException
/*     */   {
/*  42 */     return encode(contents, format, width, height, null);
/*     */   }
/*     */ 
/*     */   public ByteMatrix encode(String contents, BarcodeFormat format, int width, int height, Hashtable hints)
/*     */     throws WriterException
/*     */   {
/*  48 */     if ((contents == null) || (contents.length() == 0)) {
/*  49 */       throw new IllegalArgumentException("Found empty contents");
/*     */     }
/*     */ 
/*  52 */     if (format != BarcodeFormat.QR_CODE) {
/*  53 */       throw new IllegalArgumentException("Can only encode QR_CODE, but got " + format);
/*     */     }
/*     */ 
/*  56 */     if ((width < 0) || (height < 0)) {
/*  57 */       throw new IllegalArgumentException("Requested dimensions are too small: " + width + 'x' + height);
/*     */     }
/*     */ 
/*  61 */     ErrorCorrectionLevel errorCorrectionLevel = ErrorCorrectionLevel.L;
/*  62 */     if (hints != null) {
/*  63 */       ErrorCorrectionLevel requestedECLevel = (ErrorCorrectionLevel)hints.get(EncodeHintType.ERROR_CORRECTION);
/*  64 */       if (requestedECLevel != null) {
/*  65 */         errorCorrectionLevel = requestedECLevel;
/*     */       }
/*     */     }
/*     */ 
/*  69 */     QRCode code = new QRCode();
/*  70 */     Encoder.encode(contents, errorCorrectionLevel, hints, code);
/*  71 */     return renderResult(code, width, height);
/*     */   }
/*     */ 
/*     */   private static ByteMatrix renderResult(QRCode code, int width, int height)
/*     */   {
/*  77 */     ByteMatrix input = code.getMatrix();
/*  78 */     int inputWidth = input.getWidth();
/*  79 */     int inputHeight = input.getHeight();
/*  80 */     int qrWidth = inputWidth + 8;
/*  81 */     int qrHeight = inputHeight + 8;
/*  82 */     int outputWidth = Math.max(width, qrWidth);
/*  83 */     int outputHeight = Math.max(height, qrHeight);
/*     */ 
/*  85 */     int multiple = Math.min(outputWidth / qrWidth, outputHeight / qrHeight);
/*     */ 
/*  90 */     int leftPadding = (outputWidth - (inputWidth * multiple)) / 2;
/*  91 */     int topPadding = (outputHeight - (inputHeight * multiple)) / 2;
/*     */ 
/*  93 */     ByteMatrix output = new ByteMatrix(outputWidth, outputHeight);
/*  94 */     byte[][] outputArray = output.getArray();
/*     */ 
/*  98 */     byte[] row = new byte[outputWidth];
/*     */ 
/* 101 */     for (int y = 0; y < topPadding; ++y) {
//下面一行代码原为setRowColor(outputArray[y], -1);
/* 102 */       setRowColor(outputArray[y], 0);
/*     */     }
/*     */ 
/* 106 */     byte[][] inputArray = input.getArray();
/* 107 */     for (int y = 0; y < inputHeight; ++y)
/*     */     {
/* 109 */       for (int x = 0; x < leftPadding; ++x) {
//原为row[x] = -1;
/* 110 */         row[x] = 0;
/*     */       }
/*     */ 
/* 114 */       int offset = leftPadding;
/* 115 */       for (int x = 0; x < inputWidth; ++x) {
//原为byte value = (inputArray[y][x] == 1) ? 0 : -1;
/* 116 */         byte value = (inputArray[y][x] == 1) ? -1 : 0;
/* 117 */         for (int z = 0; z < multiple; ++z) {
/* 118 */           row[(offset + z)] = value;
/*     */         }
/* 120 */         offset += multiple;
/*     */       }
/*     */ 
/* 124 */       offset = leftPadding + inputWidth * multiple;
/* 125 */       for (int x = offset; x < outputWidth; ++x) {
//原为row[x] = -1;
/* 126 */         row[x] = 0;
/*     */       }
/*     */ 
/* 130 */       offset = topPadding + y * multiple;
/* 131 */       for (int z = 0; z < multiple; ++z) {
/* 132 */         System.arraycopy(row, 0, outputArray[(offset + z)], 0, outputWidth);
/*     */       }
/*     */ 
/*     */     }
/*     */ 
/* 137 */     int offset = topPadding + inputHeight * multiple;
/* 138 */     for (int y = offset; y < outputHeight; ++y) {
/* 139 */       setRowColor(outputArray[y], 0);
/*     */     }
/*     */ 
/* 142 */     return output;
/*     */   }
/*     */ 
/*     */   private static void setRowColor(byte[] row, byte value) {
/* 146 */     for (int x = 0; x < row.length; ++x)
/* 147 */       row[x] = value;
/*     */   }
/*     */ }
3 楼 zcbbupt 2010-06-11  
能详细讲一下怎么使用这个开源项目嘛!
2 楼 sinfrancis 2010-06-07  
贝壳水母 写道
毕业设计刚搞的就是QRCODE,这个项目帮了不少忙

此类库做条形码扫描有很大的帮助。
1 楼 贝壳水母 2010-06-04  
毕业设计刚搞的就是QRCODE,这个项目帮了不少忙

相关推荐

    QrReader类PHP7.3可用

    在PHP编程环境中,QrReader类是一个用于读取和解析二维码(QR Code)的工具,尤其适用于PHP 7.3版本。这个类库通常能够帮助开发者轻松地从图像中识别和提取二维码数据,广泛应用于网站集成、数据追踪、移动支付等...

    php二维码类库:一个支持二维码读取的php类库(qreader)

    4. **兼容性**:"qreader"类库的一个显著特点是支持多种类型的二维码,包括但不限于QR码、DataMatrix、EAN、Code128等。这意味着你可以用同一个类库处理多种不同的二维码格式。 5. **示例代码**:通常,类库会提供...

    PHP QR Code在线生成二维码调用方法及实例.rar

    这是一个PHP二维码在线生成源码,采用的是PHP QR Code类库生成,在生成时调用这个类文件即可,用此方法生成二维码,相对来说是比较简单的了。这个二维码生成用法也挺简单,直接在文本框中输入文字或网址后,单击按钮...

    phpqrcode.zip

    在ThinkPHP5.1中,`vendor`目录是存放第三方库的地方,符合Composer的规范,这样我们就可以方便地通过命名空间来调用PHP QR Code类库。 集成PHP QR Code到ThinkPHP5.1的步骤如下: 1. 将解压后的PHP QR Code库...

    基于Labview的QR-Code生成VI

    这个“基于Labview的QR-Code生成VI”项目,显然涉及到如何利用LabVIEW来生成二维码,这在自动化、物联网(IoT)和数据追踪等领域具有广泛应用。下面我们将深入探讨相关的知识点。 首先,让我们了解二维码(Quick ...

    用法PHP生成二维码的两种方法_.docx

    第二种方法是使用PHP QR Code类库。这是一个开源的PHP库,能够自动生成二维码图片。首先需要从官方源码库(http://phpqrcode.sourceforge.net/)下载类库,然后引入`phpqrcode.php`文件。以下是如何使用该库生成...

    QR CODE QR CODEQR CODE

    在给定的文件名列表中,我们可以看出这可能是一些与生成和处理QR码相关的编程库或类库。以下是对每个文件名的详细解释: 1. **gma.qrcodenet.encoding**:这个可能是一个.NET框架下的QR码编码库,"gma"可能是开发者...

    qr code 2 qr code 2

    二维码(Quick Response Code,简称QR码)是一种二维条形码,由日本Denso Wave公司在1994年发明。它能够存储比传统一维条形码更多的信息,包括文字、数字、网址、电子邮件地址、电话号码、图片等。QR码通过编码算法...

    PHP下通过QRCode类库创建中间带网站LOGO的二维码

    以下是对如何使用PHP QR Code类库创建二维码,包括带网站LOGO的二维码的详细说明。 首先,你需要下载PHP QR Code类库。由于源代码托管在SourceForge上,如果直接链接无法访问,可以尝试国内镜像站点进行下载。下载...

    php生成二维码

    本文主要探讨如何使用PHP生成二维码,包括两种常见的实现方式:调用Google API和使用PHP QR Code类库。 首先,我们可以利用Google的开放API来生成二维码。Google提供了方便的图表服务,其中包括二维码生成接口。...

    使用PHP生成二维码的两种方法(带logo图像)

    2. **使用PHP QR Code类库生成二维码** PHP QR Code是一个开源的PHP类库,允许开发者在PHP环境中方便地生成二维码。这个库包含了一个核心类`QRcode`,其中的`png()`方法负责生成二维码的PNG图像。开发者需要指定要...

    php生成二维码时出现中文乱码的解决方法

    例如,如果你使用的是PHP QR Code类库,可以这样做: ```php require_once 'phpqrcode/qrlib.php'; $data = '中文测试数据'; QRcode::png($data, 'qrcode.png', QR_ECLEVEL_L, 4, 4, true, 'UTF-8'); ``` 在这个...

    Vsual c++ 开发的 QR code 程序

    【标题】"Vsual c++ 开发的 QR code 程序" 描述了一款使用Microsoft Visual C++编写的二维码生成软件。这款程序能够创建二维条码,即QR码,并将其保存为图像文件。该软件的用户界面为日文,但可以在.NET Framework ...

    zbarcode php二维码识别类库(window)

    zbar是一个开源的图像处理库,支持多种一维和二维条码的识别,包括QR码、Aztec码、Code 128等。zbarCode.dll为PHP提供了一个接口,使得在PHP环境中可以直接调用zbar的解码功能。 为了在Windows环境下使用zbarCode....

    用于读写条形码 C# 类库 MessagingToolkit Barcode

    QR Code Data Matrix PDF 417 Bookland/ISBN Codabar Code 11 Code 128 Code 128-A Code 128-B Code 128-C Code 39 Code 39 Extended Code 93 EAN-13 EAN-8 FIM Interleaved 2 of 5 ITF-14 LOGMARS MSI 2 Mod 10 MSI...

    (0140)-iOS/iPhone/iPAD/iPod源代码-其他(Others)-QR Code Encoder

    在iOS开发中,有时我们需要将特定的信息,如URL、文本或ID,编码为二维码(QR Code),以便用户可以通过扫描快速获取这些信息。本资源“(0140)-iOS/iPhone/iPad/iPod源代码-其他(Others)-QR Code Encoder”...

    QR-read-.NET.zip_qr code reader

    在这个平台上,我们可以利用强大的类库来开发QR码读取功能。 这个名为"全局热键读取QR码"的项目,核心在于它的全局热键控制。全局热键,也称为快捷键或热键,允许用户在任何应用程序中通过按下特定组合的按键触发...

    用于读写条形码 C#类库 MessagingToolkit Barcode

    QR Code Data Matrix PDF 417 Bookland/ISBN Codabar Code 11 Code 128 Code 128-A Code 128-B Code 128-C Code 39 Code 39 Extended Code 93 EAN-13 EAN-8 FIM Interleaved 2 of 5 ITF-14 LOGMARS MSI 2 Mod 10 MSI...

    PHP生成二维码的两个方法和实例

    总的来说,PHP生成二维码既可以通过调用Google API,也可以借助PHP QR Code类库。这两种方法都具有一定的灵活性,可以根据项目需求进行定制,例如调整二维码尺寸、错误校正级别、添加LOGO等。在实际开发中,根据项目...

    使用PHP生成二维码的方法汇总

    其次,使用PHP QR Code类库是另一个常用的方法。PHP QR Code是一个开源的PHP类库,无需依赖外部服务即可生成二维码。使用前需要确保PHP环境支持GD2库。类库中提供了png()方法,这个方法可以根据传入的文本、纠错级别...

Global site tag (gtag.js) - Google Analytics