Zxing2.2 生成QR二维码和一维码(条码)

2024-01-28 11:38

本文主要是介绍Zxing2.2 生成QR二维码和一维码(条码),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

在http://code.google.com/p/zxing/downloads/list下载zxing压缩包Zxing-2.2,

使用core包

代码如下:

 

Java代码   收藏代码
  1. package cn.wuhongbox.common.javaQR;  
  2.   
  3. import java.awt.image.BufferedImage;  
  4. import java.io.File;  
  5. import java.io.IOException;  
  6. import java.util.Hashtable;  
  7.   
  8. import javax.imageio.ImageIO;  
  9.   
  10. import com.google.zxing.BarcodeFormat;  
  11. import com.google.zxing.BinaryBitmap;  
  12. import com.google.zxing.DecodeHintType;  
  13. import com.google.zxing.EncodeHintType;  
  14. import com.google.zxing.LuminanceSource;  
  15. import com.google.zxing.MultiFormatReader;  
  16. import com.google.zxing.MultiFormatWriter;  
  17. import com.google.zxing.Result;  
  18. import com.google.zxing.client.j2se.BufferedImageLuminanceSource;  
  19. import com.google.zxing.common.BitMatrix;  
  20. import com.google.zxing.common.HybridBinarizer;  
  21.   
  22. public class QRUtil  
  23. {  
  24.     private static final String CODE = "utf-8";  
  25.     private static final int BLACK = 0xff000000;  
  26.     private static final int WHITE = 0xFFFFFFFF;  
  27.   
  28.     /** 
  29.      * 生成RQ二维码 
  30.      *  
  31.      * @author wuhongbo 
  32.      * @param str 
  33.      *            内容 
  34.      * @param height 
  35.      *            高度(px) 
  36.      *  
  37.      */  
  38.     public static BufferedImage getRQ(String str, Integer height)  
  39.     {  
  40.         if (height == null || height < 100)  
  41.         {  
  42.             height = 200;  
  43.         }  
  44.   
  45.         try  
  46.         {  
  47.             // 文字编码  
  48.             Hashtable<EncodeHintType, String> hints = new Hashtable<EncodeHintType, String>();  
  49.             hints.put(EncodeHintType.CHARACTER_SET, CODE);  
  50.   
  51.             BitMatrix bitMatrix = new MultiFormatWriter().encode(str,  
  52.                     BarcodeFormat.QR_CODE, height, height, hints);  
  53.   
  54.             return toBufferedImage(bitMatrix);  
  55.   
  56.             // 输出方式  
  57.             // 网页  
  58.             // ImageIO.write(image, "png", response.getOutputStream());  
  59.   
  60.             // 文件  
  61.             // ImageIO.write(image, "png", file);  
  62.         }  
  63.         catch (Exception e)  
  64.         {  
  65.             e.printStackTrace();  
  66.         }  
  67.         return null;  
  68.     }  
  69.   
  70.     /** 
  71.      * 生成一维码(128) 
  72.      *  
  73.      * @author wuhongbo 
  74.      * @param str 
  75.      * @param width 
  76.      * @param height 
  77.      * @return 
  78.      */  
  79.     public static BufferedImage getBarcode(String str, Integer width,  
  80.             Integer height)  
  81.     {  
  82.   
  83.         if (width == null || width < 200)  
  84.         {  
  85.             width = 200;  
  86.         }  
  87.   
  88.         if (height == null || height < 50)  
  89.         {  
  90.             height = 50;  
  91.         }  
  92.   
  93.         try  
  94.         {  
  95.             // 文字编码  
  96.             Hashtable<EncodeHintType, String> hints = new Hashtable<EncodeHintType, String>();  
  97.             hints.put(EncodeHintType.CHARACTER_SET, CODE);  
  98.   
  99.             BitMatrix bitMatrix = new MultiFormatWriter().encode(str,  
  100.                     BarcodeFormat.CODE_128, width, height, hints);  
  101.   
  102.             return toBufferedImage(bitMatrix);  
  103.         }  
  104.         catch (Exception e)  
  105.         {  
  106.             e.printStackTrace();  
  107.         }  
  108.         return null;  
  109.     }  
  110.   
  111.     /** 
  112.      * 生成二维码,写到文件中 
  113.      *  
  114.      * @author wuhongbo 
  115.      * @param str 
  116.      * @param height 
  117.      * @param file 
  118.      * @throws IOException 
  119.      */  
  120.     public static void getRQWriteFile(String str, Integer height, File file)  
  121.             throws IOException  
  122.     {  
  123.         BufferedImage image = getRQ(str, height);  
  124.         ImageIO.write(image, "png", file);  
  125.     }  
  126.   
  127.     /** 
  128.      * 生成一维码,写到文件中 
  129.      *  
  130.      * @author wuhongbo 
  131.      * @param str 
  132.      * @param height 
  133.      * @param file 
  134.      * @throws IOException 
  135.      */  
  136.     public static void getBarcodeWriteFile(String str, Integer width,  
  137.             Integer height, File file) throws IOException  
  138.     {  
  139.         BufferedImage image = getBarcode(str, width, height);  
  140.         ImageIO.write(image, "png", file);  
  141.     }  
  142.   
  143.     /** 
  144.      * 转换成图片 
  145.      *  
  146.      * @author wuhongbo 
  147.      * @param matrix 
  148.      * @return 
  149.      */  
  150.     private static BufferedImage toBufferedImage(BitMatrix matrix)  
  151.     {  
  152.         int width = matrix.getWidth();  
  153.         int height = matrix.getHeight();  
  154.         BufferedImage image = new BufferedImage(width, height,  
  155.                 BufferedImage.TYPE_INT_ARGB);  
  156.         for (int x = 0; x < width; x++)  
  157.         {  
  158.             for (int y = 0; y < height; y++)  
  159.             {  
  160.                 image.setRGB(x, y, matrix.get(x, y) ? BLACK : WHITE);  
  161.             }  
  162.         }  
  163.         return image;  
  164.     }  
  165.   
  166.     /** 
  167.      * 解码(二维、一维均可) 
  168.      */  
  169.     public static String read(File file)  
  170.     {  
  171.   
  172.         BufferedImage image;  
  173.         try  
  174.         {  
  175.             if (file == null || file.exists() == false)  
  176.             {  
  177.                 throw new Exception(" File not found:" + file.getPath());  
  178.             }  
  179.   
  180.             image = ImageIO.read(file);  
  181.   
  182.             LuminanceSource source = new BufferedImageLuminanceSource(image);  
  183.             BinaryBitmap bitmap = new BinaryBitmap(new HybridBinarizer(source));  
  184.   
  185.             Result result;  
  186.   
  187.             // 解码设置编码方式为:utf-8,  
  188.             Hashtable hints = new Hashtable();  
  189.             hints.put(DecodeHintType.CHARACTER_SET, "utf-8");  
  190.   
  191.             result = new MultiFormatReader().decode(bitmap, hints);  
  192.   
  193.             return result.getText();  
  194.   
  195.         }  
  196.         catch (Exception e)  
  197.         {  
  198.             e.printStackTrace();  
  199.         }  
  200.   
  201.         return null;  
  202.     }  
  203.   
  204.     public static void main(String[] args) throws Exception  
  205.     {  
  206.         File file = new File("c://1.png");  
  207.         // RQUtil.getRQwriteFile("吴宏波中华人民共和国", 200, file);  
  208.   
  209.         // code39 大写字母、数字、-、  
  210.         // code128   
  211.         QRUtil.getBarcodeWriteFile("12345678900-J_j"null,null, file);  
  212.   
  213.         System.out.println("-----成生成功----");  
  214.         System.out.println();  
  215.   
  216.         String s = QRUtil.read(file);  
  217.   
  218.         System.out.println("-----解析成功----");  
  219.         System.out.println(s);  
  220.     }  
  221.   
  222. }  

这篇关于Zxing2.2 生成QR二维码和一维码(条码)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/653534

相关文章

MybatisGenerator文件生成不出对应文件的问题

《MybatisGenerator文件生成不出对应文件的问题》本文介绍了使用MybatisGenerator生成文件时遇到的问题及解决方法,主要步骤包括检查目标表是否存在、是否能连接到数据库、配置生成... 目录MyBATisGenerator 文件生成不出对应文件先在项目结构里引入“targetProje

Python使用qrcode库实现生成二维码的操作指南

《Python使用qrcode库实现生成二维码的操作指南》二维码是一种广泛使用的二维条码,因其高效的数据存储能力和易于扫描的特点,广泛应用于支付、身份验证、营销推广等领域,Pythonqrcode库是... 目录一、安装 python qrcode 库二、基本使用方法1. 生成简单二维码2. 生成带 Log

Python使用Pandas库将Excel数据叠加生成新DataFrame的操作指南

《Python使用Pandas库将Excel数据叠加生成新DataFrame的操作指南》在日常数据处理工作中,我们经常需要将不同Excel文档中的数据整合到一个新的DataFrame中,以便进行进一步... 目录一、准备工作二、读取Excel文件三、数据叠加四、处理重复数据(可选)五、保存新DataFram

SpringBoot生成和操作PDF的代码详解

《SpringBoot生成和操作PDF的代码详解》本文主要介绍了在SpringBoot项目下,通过代码和操作步骤,详细的介绍了如何操作PDF,希望可以帮助到准备通过JAVA操作PDF的你,项目框架用的... 目录本文简介PDF文件简介代码实现PDF操作基于PDF模板生成,并下载完全基于代码生成,并保存合并P

详解Java中如何使用JFreeChart生成甘特图

《详解Java中如何使用JFreeChart生成甘特图》甘特图是一种流行的项目管理工具,用于显示项目的进度和任务分配,在Java开发中,JFreeChart是一个强大的开源图表库,能够生成各种类型的图... 目录引言一、JFreeChart简介二、准备工作三、创建甘特图1. 定义数据集2. 创建甘特图3.

AI一键生成 PPT

AI一键生成 PPT 操作步骤 作为一名打工人,是不是经常需要制作各种PPT来分享我的生活和想法。但是,你们知道,有时候灵感来了,时间却不够用了!😩直到我发现了Kimi AI——一个能够自动生成PPT的神奇助手!🌟 什么是Kimi? 一款月之暗面科技有限公司开发的AI办公工具,帮助用户快速生成高质量的演示文稿。 无论你是职场人士、学生还是教师,Kimi都能够为你的办公文

pdfmake生成pdf的使用

实际项目中有时会有根据填写的表单数据或者其他格式的数据,将数据自动填充到pdf文件中根据固定模板生成pdf文件的需求 文章目录 利用pdfmake生成pdf文件1.下载安装pdfmake第三方包2.封装生成pdf文件的共用配置3.生成pdf文件的文件模板内容4.调用方法生成pdf 利用pdfmake生成pdf文件 1.下载安装pdfmake第三方包 npm i pdfma

poj 1258 Agri-Net(最小生成树模板代码)

感觉用这题来当模板更适合。 题意就是给你邻接矩阵求最小生成树啦。~ prim代码:效率很高。172k...0ms。 #include<stdio.h>#include<algorithm>using namespace std;const int MaxN = 101;const int INF = 0x3f3f3f3f;int g[MaxN][MaxN];int n

poj 1287 Networking(prim or kruscal最小生成树)

题意给你点与点间距离,求最小生成树。 注意点是,两点之间可能有不同的路,输入的时候选择最小的,和之前有道最短路WA的题目类似。 prim代码: #include<stdio.h>const int MaxN = 51;const int INF = 0x3f3f3f3f;int g[MaxN][MaxN];int P;int prim(){bool vis[MaxN];

poj 2349 Arctic Network uva 10369(prim or kruscal最小生成树)

题目很麻烦,因为不熟悉最小生成树的算法调试了好久。 感觉网上的题目解释都没说得很清楚,不适合新手。自己写一个。 题意:给你点的坐标,然后两点间可以有两种方式来通信:第一种是卫星通信,第二种是无线电通信。 卫星通信:任何两个有卫星频道的点间都可以直接建立连接,与点间的距离无关; 无线电通信:两个点之间的距离不能超过D,无线电收发器的功率越大,D越大,越昂贵。 计算无线电收发器D