Java 二維碼生成圖片《一》

當前,二維碼技術已經隨處可見,現在直接JAVA 代碼直接生成二維碼圖片。
先看一下整體效果。
Java代碼直接生成二維碼圖片:
chen
看一下項目的目錄結構:
這裏寫圖片描述
下面給出完整的代碼,及所用jar包


Java QRCodeUtil 類

package com.chen;
/**
 *  @author:辰
 *  @E-mail:[email protected]
 *   @qq: [email protected]
 *  @2018年2月1日下午3:28:12
 */
import java.awt.Color;
import java.awt.Graphics2D;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import java.io.UnsupportedEncodingException;

import javax.imageio.ImageIO;

import com.swetake.util.Qrcode;

import jp.sourceforge.qrcode.QRCodeDecoder;
import jp.sourceforge.qrcode.data.QRCodeImage;
import jp.sourceforge.qrcode.exception.DecodingFailedException;

public class QRCodeUtil {

     public static void qrCodeEncode(String encodeddata, File destFile) throws IOException {  
            Qrcode qrcode = new Qrcode();  
            qrcode.setQrcodeErrorCorrect('M');  // 糾錯級別(L 7%、M 15%、Q 25%、H 30%)和版本有關  
            qrcode.setQrcodeEncodeMode('B');      
            qrcode.setQrcodeVersion(7);     // 設置Qrcode包的版本  

            byte[] d = encodeddata.getBytes("GBK"); // 字符集  
            BufferedImage bi = new BufferedImage(139, 139, BufferedImage.TYPE_INT_RGB);  
            // createGraphics   // 創建圖層  
            Graphics2D g = bi.createGraphics();  

            g.setBackground(Color.WHITE);   // 設置背景顏色(白色)  
            g.clearRect(0, 0, 139, 139);    // 矩形 X、Y、width、height  
            g.setColor(Color.BLACK);    // 設置圖像顏色(黑色)  

            if (d.length > 0 && d.length < 123) {  
                boolean[][] b = qrcode.calQrcode(d);  
                for (int i = 0; i < b.length; i++) {  
                    for (int j = 0; j < b.length; j++) {  
                        if (b[j][i]) {  
                            g.fillRect(j * 3 + 2, i * 3 + 2, 3, 3);  
                        }  
                    }  
                }  
            }  

//        Image img = ImageIO.read(new File("D:/tt.png"));  logo  
//        g.drawImage(img, 25, 55,60,50, null);  

            g.dispose(); // 釋放此圖形的上下文以及它使用的所有系統資源。調用 dispose 之後,就不能再使用 Graphics 對象  
            bi.flush(); // 刷新此 Image 對象正在使用的所有可重構的資源  

            ImageIO.write(bi, "png", destFile);  
//          System.out.println("Input Encoded data is:" + encodeddata);  
        }  

        /** 
         * 解析二維碼,返回解析內容 
         *  
         * @param imageFile 
         * @return 
         */  
        public static String qrCodeDecode(File imageFile) {  
            String decodedData = null;  
            QRCodeDecoder decoder = new QRCodeDecoder();  
            BufferedImage image = null;  
            try {  
                image = ImageIO.read(imageFile);  
            } catch (IOException e) {  
                System.out.println("Error: " + e.getMessage());  
            }  

            try {  
                decodedData = new String(decoder.decode(new J2SEImage(image)), "GBK");  
//              System.out.println("Output Decoded Data is:" + decodedData);  
            } catch (DecodingFailedException dfe) {  
                System.out.println("Error: " + dfe.getMessage());  
            } catch (UnsupportedEncodingException e) {  
                e.printStackTrace();  
            }  
            return decodedData;  
        }  


        static class J2SEImage implements QRCodeImage {  
            BufferedImage image;  

            public J2SEImage(BufferedImage image) {  
                this.image = image;  
            }  

            public int getWidth() {  
                return image.getWidth();  
            }  

            public int getHeight() {  
                return image.getHeight();  
            }  

            public int getPixel(int x, int y) {  
                return image.getRGB(x, y);  
            }  
        }  

        public static void main(String[] args) {  
            String filePath = "d:/test/chen.png";  
            File qrFile = new File(filePath);  

            // 二維碼內容  
            String encodeddata = "http://blog.csdn.net/chenfengbao/";  
            try {  
                QRCodeUtil.qrCodeEncode(encodeddata, qrFile);  
            } catch (IOException e) {  
                e.printStackTrace();  
            }  

            // 解碼  
            String reText = QRCodeUtil.qrCodeDecode(qrFile);  
            System.out.println(reText);  
        }  
}

注意:這裏輸出的目錄是:”d:/test/chen.png”,二維碼內容換成自己想要顯示的內容即可。
用到的 jar包:
這裏寫圖片描述

《end》

文末會給出完整的示例。連接:http://download.csdn.net/download/chenfengbao/10235452
或者直接點擊這裏

備註:要是沒有C幣的童鞋,可以留下郵箱,我會發送源碼的

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章