java生成二維碼工具類

package com.dqchan.cloud.utils;

import java.awt.BasicStroke;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.Image;
import java.awt.Shape;
import java.awt.geom.RoundRectangle2D;
import java.awt.image.BufferedImage;
import java.io.File;
import java.net.HttpURLConnection;
import java.net.URL;
import java.util.Hashtable;
import javax.imageio.ImageIO;
import com.google.zxing.BarcodeFormat;
import com.google.zxing.EncodeHintType;
import com.google.zxing.MultiFormatWriter;
import com.google.zxing.common.BitMatrix;
import com.google.zxing.qrcode.decoder.ErrorCorrectionLevel;

/**
 * 二維碼工具類
 * @author: dongqi_chen
 * @Date: 2019/05/16
 */
public class QRCodeUtil {
    private static final String CHARSET = "utf-8";
    private static final String FORMAT_NAME = "jpg";
    // 二維碼尺寸
    private static final int QRCODE_SIZE = 300;
    // LOGO寬度
    private static final int WIDTH = 50;
    // LOGO高度
    private static final int HEIGHT = 50;

    /**
     * logo來源本地
     */
    public static final String IMG_RESOURCE_TYPE_LOCAL = "LOCAL";
    /**
     * logo來源網絡
     */
    public static final String IMG_RESOURCE_TYPE_WEB = "WEB";

    /**
     * 生成二維碼
     * @param content 二維碼內容
     * @param logoPath logo路徑,可爲空
     * @param needCompress 是否壓縮
     * @return
     * @throws Exception
     */
    public static BufferedImage encode(String content, String logoPath,String imgResourceType,boolean needCompress) throws Exception {
        Hashtable hints = new Hashtable();
        hints.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.H);
        hints.put(EncodeHintType.CHARACTER_SET, CHARSET);
        hints.put(EncodeHintType.MARGIN, 1);
        BitMatrix bitMatrix = new MultiFormatWriter().encode(content,
                BarcodeFormat.QR_CODE, QRCODE_SIZE, QRCODE_SIZE, hints);
        int width = bitMatrix.getWidth();
        int height = bitMatrix.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, bitMatrix.get(x, y) ? 0xFF000000: 0xFFFFFFFF);
            }
        }
        if (StringUtil.isBlank(logoPath)) {
            return image;
        }
        // 插入圖片
        QRCodeUtil.insertImage(image, logoPath,imgResourceType, needCompress);
        return image;
    }

    /**
     * 插入描述圖片
     * @param source
     * @param imgPath
     * @param imgResourceType 圖片來源 LOCAL本地 WEB網絡
     * @param needCompress 是否壓縮
     * @throws Exception
     */
    private static void insertImage(BufferedImage source, String imgPath,String imgResourceType,
                                    boolean needCompress) throws Exception {
        Image src = null;
        if(IMG_RESOURCE_TYPE_WEB.equals(imgResourceType)) {
            URL url = new URL(imgPath);
            //打開鏈接
            HttpURLConnection conn = (HttpURLConnection) url.openConnection();
            //設置請求方式爲"GET"
            conn.setRequestMethod("GET");
            //超時響應時間爲5秒
            conn.setConnectTimeout(5 * 1000);
            //通過輸入流獲取圖片數據
            src = ImageIO.read(conn.getInputStream());
        }else{
            File file = new File(imgPath);
            if (!file.exists()) {
                //文件不存在
                return;
            }
            src = ImageIO.read(new File(imgPath));
        }
        if(src==null){
            return;
        }
        int width = src.getWidth(null);
        int height = src.getHeight(null);
        if (needCompress) { // 壓縮LOGO
            if (width > WIDTH) {
                width = WIDTH;
            }
            if (height > HEIGHT) {
                height = HEIGHT;
            }
            Image image = src.getScaledInstance(width, height,
                    Image.SCALE_SMOOTH);
            BufferedImage tag = new BufferedImage(width, height,
                    BufferedImage.TYPE_INT_RGB);
            Graphics g = tag.getGraphics();
            g.drawImage(image, 0, 0, null); // 繪製縮小後的圖
            g.dispose();
            src = image;
        }
        // 插入LOGO
        Graphics2D graph = source.createGraphics();
        int x = (QRCODE_SIZE - width) / 2;
        int y = (QRCODE_SIZE - height) / 2;
        graph.drawImage(src, x, y, width, height, null);
        Shape shape = new RoundRectangle2D.Float(x, y, width, width, 6, 6);
        graph.setStroke(new BasicStroke(3f));
        graph.draw(shape);
        graph.dispose();
    }
}
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章