1、二维码简介
二维条形码是用某种特定的几何图形按一定规律在平面(二维方向上)分布的黑白相间的图形记录数据符号信息的,在代码编制上巧妙地利用构成计算机内部逻辑基础的“0”、“1”比特流的概念,使用若干个与二进制相对应的几何形体来表示文字数值内容信息,通过图象输入设备或光电扫描设备自动识读以实现信息自动处理。二维码具有条码技术的一些共性:每种码制有其特定的字符集;每个字符占有一定的宽度;具有一定的校验功能等。同时还具有对不同行的信息自动识别功能、及处理图形旋转变化等特点。
二维码纠错级别
二维码纠错级别指的是在识别二维码时,对于损坏或模糊的二维码的容错能力。一般来说,二维码有四个纠错级别:L (低):可以纠正7%左右的错误。M (中):可以纠正15%左右的错误。Q (高):可以纠正25%左右的错误。H (高):可以纠正30%左右的错误。总结:一般来说,使用较高的纠错级别会导致生成的二维码更大,但是它的容错能力也会更强。
2、ZXing简介
ZXing(Zebra Crossing)是Google开发的一个二维码解析和生成的开源库。官网地址:http://code.google.com/p/zxing/
3、示例
通过Java调用Zxing实现二维码的生成
3.1 搭建一个maven项目,引入Zxing依赖包
<dependency><groupId>com.google.zxing</groupId><artifactId>javase</artifactId><version>3.3.0</version></dependency>
3.2 创建QrCodeUtil.java 类
具体实现代码如下:
packageQrCodeUtil; importjava.awt.BasicStroke; importjava.awt.Color; importjava.awt.Graphics2D; importjava.awt.image.BufferedImage; importjava.io.File; importjava.io.FileOutputStream; importjava.io.IOException; importjava.io.OutputStream; importjava.util.Date; importjava.util.Hashtable; importjavax.imageio.ImageIO; importcom.alibaba.druid.util.StringUtils; importcom.google.zxing.BarcodeFormat; importcom.google.zxing.EncodeHintType; importcom.google.zxing.MultiFormatWriter; importcom.google.zxing.WriterException; importcom.google.zxing.common.BitMatrix; importcom.google.zxing.qrcode.decoder.ErrorCorrectionLevel; /*** 生成二维码*/publicclassQrCodeUtil { privatestaticfinalintBLACK=0xFF000000; privatestaticfinalintWHITE=0xFFFFFFFF; privatestaticfinalintmargin=0; privatestaticfinalintLogoPart=4; publicstaticvoidmain(String[] args) throwsWriterException { //二维码内容Stringcontent="IT技术分享社区,一个有态度的互联网社区交流平台"; StringlogoPath="D:\\logo.png"; // 二维码中间的logo信息 非必须Stringformat="jpg"; intwidth=120; // 二维码宽度intheight=120;// 二维码高度// 设置二维码矩阵的信息BitMatrixbitMatrix=setBitMatrix(content, width, height); // 设置输出流OutputStreamoutStream=null; Stringpath="d:/Code"+newDate().getTime() +".png";//设置二维码的文件名try { outStream=newFileOutputStream(newFile(path)); // 目前 针对容错等级为H reduceWhiteArea 二维码空白区域的大小 根据实际情况设置,如果二维码内容长度不固定的话 需要自己根据实际情况计算reduceWhiteArea的大小writeToFile(bitMatrix, format, outStream, logoPath, 5); outStream.close(); } catch (Exceptione) { e.printStackTrace(); } } /*** 设置生成二维码矩阵信息* @param content 二维码图片内容* @param width 二维码图片宽度* @param height 二维码图片高度* @throws WriterException*/privatestaticBitMatrixsetBitMatrix(Stringcontent, intwidth, intheight) throwsWriterException { BitMatrixbitMatrix=null; Hashtable<EncodeHintType, Object>hints=newHashtable<EncodeHintType, Object>(); hints.put(EncodeHintType.CHARACTER_SET, "UTF-8"); // 指定编码方式,避免中文乱码hints.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.H); // 指定纠错等级 如果二维码里面的内容比较多的话推荐使用H 容错率30%, 这样可以避免一些扫描不出来的问题hints.put(EncodeHintType.MARGIN, margin); // 指定二维码四周白色区域大小 官方的这个方法目前没有没有作用默认设置为0bitMatrix=newMultiFormatWriter().encode(content, BarcodeFormat.QR_CODE, width, height, hints); returnbitMatrix; } /*** @param matrix* @param format* @param outStream* @param logoPath logo图片* @param reduceWhiteArea 二维码空白区域设置* @throws IOException*/privatestaticvoidwriteToFile(BitMatrixmatrix, Stringformat, OutputStreamoutStream, StringlogoPath, intreduceWhiteArea) throwsIOException { BufferedImageimage=toBufferedImage(matrix, reduceWhiteArea); // 如果设置了二维码里面的logo 加入LOGO水印if (!StringUtils.isEmpty(logoPath)) { image=addLogo(image, logoPath); } ImageIO.write(image, format, outStream); } /**** @param matrix* @param reduceWhiteArea* @return*/privatestaticBufferedImagetoBufferedImage(BitMatrixmatrix, intreduceWhiteArea) { intwidth=matrix.getWidth(); intheight=matrix.getHeight(); BufferedImageimage=newBufferedImage(width-2*reduceWhiteArea, height-2*reduceWhiteArea, BufferedImage.TYPE_3BYTE_BGR); for (intx=reduceWhiteArea; x<width-reduceWhiteArea; x++) { for (inty=reduceWhiteArea; y<height-reduceWhiteArea; y++) { image.setRGB(x-reduceWhiteArea, y-reduceWhiteArea, matrix.get(x, y) ?BLACK : WHITE); } } returnimage; } /*** 给二维码图片中绘制logo信息 非必须* @param image 二维码图片* @param logoPath logo图片路径*/privatestaticBufferedImageaddLogo(BufferedImageimage, StringlogoPath) throwsIOException { Graphics2Dg=image.createGraphics(); BufferedImagelogoImage=ImageIO.read(newFile(logoPath)); // 计算logo图片大小,可适应长方形图片,根据较短边生成正方形intwidth=image.getWidth() <image.getHeight() ?image.getWidth() /LogoPart : image.getHeight() /LogoPart; intheight=width; // 计算logo图片放置位置intx= (image.getWidth() -width) /2; inty= (image.getHeight() -height) /2; // 在二维码图片上绘制中间的logog.drawImage(logoImage, x, y, width, height, null); // 绘制logo边框,可选g.setStroke(newBasicStroke(2)); // 画笔粗细g.setColor(Color.WHITE); // 边框颜色g.drawRect(x, y, width, height); // 矩形边框logoImage.flush(); g.dispose(); returnimage; } }