Zxing实现二维码生成和解析,可带logo

    在项目中使用zxing生成二维码提供项目支撑(ZXing是一个开源Java类库用于解析多种格式的条形码和二维码),其余SwetakeQRCode、BarCode4j等等工具可去了解。

 

简单介绍:

 

        二维条形码最早发明于日本,它是用某种特定的几何图形按一定规律在平面(二维方向上)分布的黑白相间的图形记录数据符号信息的,在代码编制上巧妙地利用构成计算机内部逻辑基础的“0”、“1”比特流的概念,使用若干个与二进制相对应的几何形体来表示文字数值信息,通过图象输入设备或光电扫描设备自动识读以实现信息自动处理。它具有条码技术的一些共性:每种码制有其特定的字符集;每个字符占有一定的宽度;具有一定的校验功能等。同时还具有对不同行的信息自动识别功能、及处理图形旋转变化等特点。

 

ps:(可能是Zxing网络上解决方案比较多,再说下,QRCode是日本人开发的,ZXing是google开发,barcode4j也是老美开发的,barcode4j对一维条形码处理的很好,而且支持的格式很多,当然也可以对二维码进行处理,效果个人感觉没有前两种好;ZXing对j2me,j2se,还有Android等支持也比较好,如果你是搞Android的或以后准备走Android,建议还是用zxing的比较好)

第一步:将二维码矩阵输出到图片上面

package t1;import java.awt.image.BufferedImage;import java.io.File;import java.io.IOException;import java.io.OutputStream;import javax.imageio.ImageIO;import com.google.zxing.common.BitMatrix;/**  * 二维码的生成需要借助MatrixToImageWriter类,该类是由Google提供的,可以将该类直接拷贝到源码中使用,当然你也可以自己写个  * 生产条形码的基类  */  public class MatrixToImageWriter {      private static final int BLACK = 0xFF000000;//用于设置图案的颜色      private static final int WHITE = 0xFFFFFFFF; //用于背景色        private MatrixToImageWriter() {      }      public static BufferedImage toBufferedImage(BitMatrix matrix) {          int width = matrix.getWidth();          int height = matrix.getHeight();          BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);          for (int x = 0; x < width; x++) {              for (int y = 0; y < height; y++) {                  image.setRGB(x, y,  (matrix.get(x, y) ? BLACK : WHITE));  //              image.setRGB(x, y,  (matrix.get(x, y) ? Color.YELLOW.getRGB() : Color.CYAN.getRGB()));              }          }          return image;      }        public static void writeToFile(BitMatrix matrix, String format, File file) throws IOException {          BufferedImage image = toBufferedImage(matrix);          //设置logo图标          LogoConfig logoConfig = new LogoConfig();          image = logoConfig.LogoMatrix(image);                    if (!ImageIO.write(image, format, file)) {              throw new IOException("Could not write an image of format " + format + " to " + file);          }else{              System.out.println("图片生成成功!");          }      }        public static void writeToStream(BitMatrix matrix, String format, OutputStream stream) throws IOException {          BufferedImage image = toBufferedImage(matrix);          //设置logo图标          LogoConfig logoConfig = new LogoConfig();          image = logoConfig.LogoMatrix(image);                    if (!ImageIO.write(image, format, stream)) {              throw new IOException("Could not write an image of format " + format);          }      }  }

第二步:主要处理logo图标已达到和微信自动的二维码相近的效果

package t1;import java.awt.BasicStroke;  import java.awt.Color;  import java.awt.Graphics2D;  import java.awt.geom.RoundRectangle2D;  import java.awt.image.BufferedImage;  import java.io.File;  import java.io.IOException;  import javax.imageio.ImageIO;  /**  * 二维码 添加 logo图标 处理的方法,  * 模仿微信自动生成二维码效果,有圆角边框,logo和二维码间有空白区,logo带有灰色边框  * @author superziy *  */  public class LogoConfig {            /**      * 设置 logo       * @param matrixImage 源二维码图片      * @return 返回带有logo的二维码图片      * @throws IOException      * @author superziy     */       public BufferedImage LogoMatrix(BufferedImage matrixImage) throws IOException{           /**           * 读取二维码图片,并构建绘图对象           */           Graphics2D g2 = matrixImage.createGraphics();                      int matrixWidth = matrixImage.getWidth();           int matrixHeigh = matrixImage.getHeight();                      /**           * 读取Logo图片           */           BufferedImage logo = ImageIO.read(new File("E:\\heack.jpg"));             //开始绘制图片           g2.drawImage(logo,matrixWidth/5*2,matrixHeigh/5*2, matrixWidth/5, matrixHeigh/5, null);//绘制                BasicStroke stroke = new BasicStroke(5,BasicStroke.CAP_ROUND,BasicStroke.JOIN_ROUND);            g2.setStroke(stroke);// 设置笔画对象           //指定弧度的圆角矩形           RoundRectangle2D.Float round = new RoundRectangle2D.Float(matrixWidth/5*2, matrixHeigh/5*2, matrixWidth/5, matrixHeigh/5,20,20);           g2.setColor(Color.white);           g2.draw(round);// 绘制圆弧矩形                      //设置logo 有一道灰色边框           BasicStroke stroke2 = new BasicStroke(1,BasicStroke.CAP_ROUND,BasicStroke.JOIN_ROUND);            g2.setStroke(stroke2);// 设置笔画对象           RoundRectangle2D.Float round2 = new RoundRectangle2D.Float(matrixWidth/5*2+2, matrixHeigh/5*2+2, matrixWidth/5-4, matrixHeigh/5-4,20,20);           g2.setColor(new Color(128,128,128));           g2.draw(round2);// 绘制圆弧矩形                      g2.dispose();           matrixImage.flush() ;           return matrixImage ;       }        }

第三步:主方法操作类

package t1;import java.io.File;import java.io.IOException;import java.util.Hashtable;import com.google.zxing.BarcodeFormat;import com.google.zxing.EncodeHintType;import com.google.zxing.MultiFormatWriter;import com.google.zxing.WriterException;import com.google.zxing.common.BitMatrix;import com.google.zxing.qrcode.decoder.ErrorCorrectionLevel;  public class EncodeTest {            public static void Encode_QR_CODE() throws IOException, WriterException{          String contents = "ZXing 二维码内容1234!"; // 二维码内容          int width = 430; // 二维码图片宽度 300           int height = 430; // 二维码图片高度300                    String format = "gif";// 二维码的图片格式 gif                    Hashtable<EncodeHintType, Object> hints = new Hashtable<EncodeHintType, Object>();           // 指定纠错等级,纠错级别(L 7%、M 15%、Q 25%、H 30%)          hints.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.H);          // 内容所使用字符集编码          hints.put(EncodeHintType.CHARACTER_SET, "utf-8");     //      hints.put(EncodeHintType.MAX_SIZE, 350);//设置图片的最大值  //      hints.put(EncodeHintType.MIN_SIZE, 100);//设置图片的最小值          hints.put(EncodeHintType.MARGIN, 1);//设置二维码边的空度,非负数                    BitMatrix bitMatrix = new MultiFormatWriter().encode(contents,//要编码的内容                  //编码类型,目前zxing支持:Aztec 2D,CODABAR 1D format,Code 39 1D,Code 93 1D ,Code 128 1D,                  //Data Matrix 2D , EAN-8 1D,EAN-13 1D,ITF (Interleaved Two of Five) 1D,                  //MaxiCode 2D barcode,PDF417,QR Code 2D,RSS 14,RSS EXPANDED,UPC-A 1D,UPC-E 1D,UPC/EAN extension,UPC_EAN_EXTENSION                  BarcodeFormat.QR_CODE,                  width, //条形码的宽度                  height, //条形码的高度                  hints);//生成条形码时的一些配置,此项可选                    // 生成二维码          File outputFile = new File("e:" + File.separator + "new-1.gif");//指定输出路径                    MatrixToImageWriter.writeToFile(bitMatrix, format, outputFile);      }            public static void main(String[] args) throws Exception {          try {              Encode_QR_CODE();          } catch (Exception e) {              // TODO: handle exception              e.printStackTrace();          }      }        }

        注意事项:二维码生成可根据自己需要的文件流生成二维码,同时,上传logo需要源文件读取。关于使用Zxing生成二维码解码报NotFoundException异常问题,遇到Zxing生成的二维码进行解码的时候报出NotFoundException异常问题,在使用Maven对源码进行编译的时候提示编译unsupported major.minorversion 51.这个与我的编译环境有关系,当时默认的JDK1.6.x,当我重新下载了最新版本的JDKjdk1.7.0_45并设置为编译环境,这个时候对源代码编译成功,并且再次运行3中的代码仍然是unsupported major.minor version51这个问题,这个时候就是开发工具锅了,Eclipse中要设置对于的JRE和编译版本。这样这个问题就解决了。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值