JAva QRコード生成ツールクラス

4616 ワード

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();
    }
}