2019独角兽企业重金招聘Python工程师标准>>>

项目中需要用到二维码,二维码的码制是PDF417,在做了一番研究之后发现zxing是个不错的开源工具(代码托管在google上面)。为什么选择zxing,由于其他一些工具比如barcode4j(开源,支持读,好像不支持写,最后维护时间在2010年)、barcode(商业版)都不太适合,所以选择了zxing。

zxing并没有提供直接可以使用的jar文件,而是需要自己通过编译源码,生成需要的jar文件。额外说明,zxing利用maven管理自己的代码,并且默认使用了jdk7,代码中也使用了jdk7的一些新特性,基于这些情况,可以适当调整jdk的版本(如果降低jdk的版本,需要改动少量的源码)。

下面直接贴出读写文件的代码:

ZxingPdfRead

package test;import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import java.net.URLDecoder;
import java.util.EnumMap;
import java.util.Map;import javax.imageio.ImageIO;import com.google.zxing.BinaryBitmap;
import com.google.zxing.BufferedImageLuminanceSource;
import com.google.zxing.DecodeHintType;
import com.google.zxing.LuminanceSource;
import com.google.zxing.MultiFormatReader;
import com.google.zxing.Reader;
import com.google.zxing.ReaderException;
import com.google.zxing.Result;
import com.google.zxing.common.HybridBinarizer;public class ZxingPdfRead {private static Reader barcodeReader = new MultiFormatReader();/*** @param args* @throws IOException*/public static void main(String[] args) throws Exception {File testImage = new File("E:\\work\\all_workspace\\wp_zxing\\barcode4jTest\\src\\test\\helloworld.png");BufferedImage image = ImageIO.read(testImage);LuminanceSource source = new BufferedImageLuminanceSource(image);BinaryBitmap bitmap = new BinaryBitmap(new HybridBinarizer(source));try {Map<DecodeHintType, Object> hints = new EnumMap<DecodeHintType, Object>(DecodeHintType.class);hints.put(DecodeHintType.TRY_HARDER, Boolean.TRUE);Result result = barcodeReader.decode(bitmap, hints);String resultText = result.getText();System.out.println("resultText:" + URLDecoder.decode(resultText, "UTF-8"));} catch (ReaderException ignored) {ignored.printStackTrace();}}
}

ZxingPdfWrite

package test;import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import java.net.URLEncoder;import javax.imageio.ImageIO;import com.google.zxing.BarcodeFormat;
import com.google.zxing.WriterException;
import com.google.zxing.common.BitMatrix;
import com.google.zxing.pdf417.PDF417Writer;public class ZxingPdfWrite {private static final int BLACK = 0xff000000;private static final int WHITE = 0xFFFFFFFF;/*** @param args* @throws WriterException*/public static void main(String[] args) throws Exception {// TODO Auto-generated method stubPDF417Writer pdf417Writer = new PDF417Writer();//注意中文乱码问题BitMatrix bitMatrix = pdf417Writer.encode(URLEncoder.encode("我是中国人","UTF-8"),BarcodeFormat.PDF_417, 100, 50);writeToFile(bitMatrix,"png",new File("E:\\work\\all_workspace\\wp_zxing\\barcode4jTest\\src\\test\\helloworld.png"));}public static void writeToFile(BitMatrix matrix, String format, File file)throws IOException {BufferedImage image = toBufferedImage(matrix);ImageIO.write(image, format, file);}public static BufferedImage toBufferedImage(BitMatrix matrix) {int width = matrix.getWidth();int height = matrix.getHeight();BufferedImage image = new BufferedImage(width, height,BufferedImage.TYPE_INT_ARGB);for (int x = 0; x < width; x++) {for (int y = 0; y < height; y++) {image.setRGB(x, y, matrix.get(x, y) == true ? BLACK : WHITE);}}return image;}}

BufferedImageLuminanceSource.java

/** Copyright 2009 ZXing authors** Licensed under the Apache License, Version 2.0 (the "License");* you may not use this file except in compliance with the License.* You may obtain a copy of the License at**      http://www.apache.org/licenses/LICENSE-2.0** Unless required by applicable law or agreed to in writing, software* distributed under the License is distributed on an "AS IS" BASIS,* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.* See the License for the specific language governing permissions and* limitations under the License.*/import com.google.zxing.LuminanceSource;import java.awt.Graphics2D;
import java.awt.image.BufferedImage;
import java.awt.geom.AffineTransform;/*** This LuminanceSource implementation is meant for J2SE clients and our blackbox unit tests.** @author dswitkin@google.com (Daniel Switkin)* @author Sean Owen*/
public final class BufferedImageLuminanceSource extends LuminanceSource {private final BufferedImage image;private final int left;private final int top;private int[] rgbData;public BufferedImageLuminanceSource(BufferedImage image) {this(image, 0, 0, image.getWidth(), image.getHeight());}public BufferedImageLuminanceSource(BufferedImage image, int left, int top, int width,int height) {super(width, height);int sourceWidth = image.getWidth();int sourceHeight = image.getHeight();if (left + width > sourceWidth || top + height > sourceHeight) {throw new IllegalArgumentException("Crop rectangle does not fit within image data.");}this.image = image;this.left = left;this.top = top;}// These methods use an integer calculation for luminance derived from:// <code>Y = 0.299R + 0.587G + 0.114B</code>@Overridepublic byte[] getRow(int y, byte[] row) {if (y < 0 || y >= getHeight()) {throw new IllegalArgumentException("Requested row is outside the image: " + y);}int width = getWidth();if (row == null || row.length < width) {row = new byte[width];}if (rgbData == null || rgbData.length < width) {rgbData = new int[width];}image.getRGB(left, top + y, width, 1, rgbData, 0, width);for (int x = 0; x < width; x++) {int pixel = rgbData[x];int luminance = (306 * ((pixel >> 16) & 0xFF) +601 * ((pixel >> 8) & 0xFF) +117 * (pixel & 0xFF)) >> 10;row[x] = (byte) luminance;}return row;}@Overridepublic byte[] getMatrix() {int width = getWidth();int height = getHeight();int area = width * height;byte[] matrix = new byte[area];int[] rgb = new int[area];image.getRGB(left, top, width, height, rgb, 0, width);for (int y = 0; y < height; y++) {int offset = y * width;for (int x = 0; x < width; x++) {int pixel = rgb[offset + x];int luminance = (306 * ((pixel >> 16) & 0xFF) +601 * ((pixel >> 8) & 0xFF) +117 * (pixel & 0xFF)) >> 10;matrix[offset + x] = (byte) luminance;}}return matrix;}@Overridepublic boolean isCropSupported() {return true;}@Overridepublic LuminanceSource crop(int left, int top, int width, int height) {return new BufferedImageLuminanceSource(image, this.left + left, this.top + top, width, height);}// Can't run AffineTransforms on images of unknown format.@Overridepublic boolean isRotateSupported() {return image.getType() != BufferedImage.TYPE_CUSTOM;}@Overridepublic LuminanceSource rotateCounterClockwise() {if (!isRotateSupported()) {throw new IllegalStateException("Rotate not supported");}int sourceWidth = image.getWidth();int sourceHeight = image.getHeight();// Rotate 90 degrees counterclockwise.AffineTransform transform = new AffineTransform(0.0, -1.0, 1.0, 0.0, 0.0, sourceWidth);// Note width/height are flipped since we are rotating 90 degrees.BufferedImage rotatedImage = new BufferedImage(sourceHeight, sourceWidth, image.getType());// Draw the original image into rotated, via transformationGraphics2D g = rotatedImage.createGraphics();g.drawImage(image, transform, null);g.dispose();// Maintain the cropped region, but rotate it too.int width = getWidth();return new BufferedImageLuminanceSource(rotatedImage, top, sourceWidth - (left + width),getHeight(), width);}}

转载于:https://my.oschina.net/u/3647620/blog/1552389

利用zxing读写PDF417码制的二维码相关推荐

  1. C# 利用ZXing.Net来生成条形码和二维码

    本文是利用ZXing.Net在WinForm中生成条形码,二维码的小例子,仅供学习分享使用,如有不足之处,还请指正. 什么是ZXing.Net? ZXing是一个开放源码的,用Java实现的多种格式的 ...

  2. 利用ZXing工具生成二维码以及解析二维码

    今天突然想到二维码是如何存储信息的.于是就开始各种搜索,最终自己也利用Google的ZXing工具完成了一个生成二维码和解析二维码的简单程序. 一. 二维码生成原理(即工作原理) 二维码官方叫版本Ve ...

  3. Java利用Zxing生成二维码及解析二维码内容

    前言 Java 操作二维码的开源项目很多,如 SwetakeQRCode.BarCode4j.Zxing 等等 本篇文章是介绍利用Zxing来生成二维码图片在web网页上展示,同时解析二维码图片. Z ...

  4. Android利用zxing生成二维码,识别二维码,中间填充图片超详细、超简易教程

    gayhub上的zxing可用于生成二维码,识别二维码 gayhub地址:https://github.com/zxing/zxing 此文只是简易教程,文末附有完整代码和demo下载地址,进入正题: ...

  5. SpringBoot+zxing+Vue实现前端请求后台二维码图片

    场景 ZXing是一个开源的,用Java实现的多种格式的1D/2D条码图像处理库. github地址: https://github.com/zxing/zxing 若依微服务版手把手教你本地搭建环境 ...

  6. 利用jquery的qrcode.js插件生成二维码的两种方式的使用

    2019独角兽企业重金招聘Python工程师标准>>> 利用jquery的qrcode.js插件生成二维码的额两种方式,canvas(即画布)方式和table方式(原文地址http: ...

  7. Android之ZXing扫描二维码以及生成二维码

    Android之ZXing扫描二维码以及生成二维码 ZXIng项目地址:ZXing地址 项目结构 扫描二维码:使用 CaptureActivity类 项目代码: import android.cont ...

  8. Qt利用QZXing和QRenCode识别二维码和制作二维码

    制作二维码和识别二维码需要用到第三方库,制作需要用到QRenCode这个库,如果没 有的,大家可以在官网下载,或者去这个网址直接下载我编译好的两个库和头文件 [https://download.csd ...

  9. Zxing图片识别 从相册选二维码图片解析总结

    Zxing图片识别 从相册选取二维码图片进行解析总结 在Zxing扫描识别和图片识别的解析对象是相同的 本文分三个步骤: 1 获取相册的照片 2 解析二维码图片 3 返回结果 1) 获取相册照片 go ...

最新文章

  1. PaperSize.RawKind 属性
  2. Java Spring源码研究之BeanNameUrlHandlerMapping
  3. 钱老,外国人能搞的,今天中国人也能搞了!
  4. 用CSS制作可交换带事件处理的图片按钮
  5. Atitit 软件知识点分类体系 分类 按照书籍的分类 学科分类 体系与基础部分 计算机体系结构 硬件接口技术(usb,agp,pci,div,hdmi) os操作系统 中间件 语言部分
  6. 赛门铁克卸载工具CleanWipe14亲测有效
  7. 变频器基础:变频器工作原理与常用功能
  8. 计算机切换用户界面键,电脑如何切换屏幕_电脑怎么切换另一个界面快捷键
  9. 计算机网速单位是什么,文件大小和网速的单位
  10. 盖茨与鲍尔默愤而诉Google 李开复离职有内情 -- ,买skype来控制桌面建立渠道吧
  11. 【笔记】ThreadFactory自定义线程名前缀
  12. 原创 基于微信场地预约小程序 毕业设计 毕设 源码 源代码 欣赏 - 可用于羽毛球、篮球、乒乓、网球等预约小程序
  13. Android 实现uc浏览器一样的菜单
  14. Undefined、Null和NaN有什么区别?
  15. win10系统访问局域网服务器,Win10系统不能访问局域网共享磁盘的解决方法
  16. 光照模型-兰伯特光照模型
  17. 超详细!使用HTML、CSS、JavaScript实现倒计时。附加功能——点击页面出现小心心
  18. java作业:类设计与实现综合实验
  19. 不是太细的java自学笔记2(p245到p315)(继承性,重写,super,多态,包装类)
  20. leetcode765_情侣牵手_贪心

热门文章

  1. win7 无法复制粘贴
  2. python学习_数据处理编程实例(一)
  3. Linux中makefile项目管理
  4. 微信小程序开发--如何在swiper中显示两个item以及下一个item的部分内容
  5. XWiki 11.1 发布,协作式应用开发平台
  6. Netty源码解析8-ChannelHandler实例之CodecHandler
  7. 解决ubuntu的chkconfig[/sbin/insserv 无法找到路径问题]
  8. 怎样才有资格被称为开源软件
  9. scrapy-splash抓取动态数据例子八
  10. Shape Drawable