• 后端生成二维码之google ZXing


    1.java生成二维码有很多开发的jar包如 ZXing,SwetakeQRCode、BarCode4j等,下面是使用zxing的开发包来实现的。
    2.ZXing项目是google code上面提供的一个关于条码编解码的开源项目。 
    3.这里用到的只是ZXing的core的jar包jar包链接: https://pan.baidu.com/s/1aYJWJCZ6LhIre7pWS8x0jg 密码: 671e

    示例代码:

    import java.awt.image.BufferedImage;
    import java.io.File;
    import java.io.IOException;
    import java.util.HashMap;
    import java.util.Map;
    
    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;
    
    public class GenerateQRCode {
        /**
         * 二维码颜色
         */
        private static final int BLACK = 0xFF000000;
        private static final int WHITE = 0xFFFFFFFF;
        
        /**
         * 图片的宽度
         */
        private static int WIDTH = 300;
        /**
         * 图片的高度
         */
        private static int HEIGHT = 300;
        /**
         * 图片的格式
         */
        private static String FORMAT = "png";
    
        public static void main(String[] args) {
            String path = "D:/my_QRCode/";
            String content = "我的二维码";
            
            generateQRCodeImg(path, content);
        }
        
        /**
         * 生成二维码
         * 
         * @param basePath 配置文件定义的生成二维码存放文件夹
         * @param content 二维码内容
         * @return 文件路径
         */
        public static String generateQRCodeImg(String basePath, String content){
            try {
                Map<EncodeHintType, String> encodeMap = new HashMap<EncodeHintType, String>();
                // 内容编码
                encodeMap.put(EncodeHintType.CHARACTER_SET, "utf-8");
                BitMatrix bitMatrix = new MultiFormatWriter().encode(content, BarcodeFormat.QR_CODE, WIDTH, HEIGHT, encodeMap);
                
                File file = new File(basePath);
                if (!file.exists() && !file.isDirectory()){
                    file.mkdirs();
                }
                
                String filePath = basePath + content + "." + FORMAT;
                
                File outputFile = new File(filePath);
                if (!outputFile.exists()){
                    // 生成二维码
                    writeToFile(bitMatrix, FORMAT, outputFile);
                }
                return filePath;
            } catch (Exception e) {
                e.printStackTrace();
            }
            return "";
        }
        
        public static void writeToFile(BitMatrix matrix, String format, File file) throws IOException {
            BufferedImage image = toBufferedImage(matrix);
            if (!ImageIO.write(image, format, file)) {
                throw new IOException("Could not write an image of format " + format + " to " + file);
            }
        }
        
        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);
                }
            }
            return image;
        }
    }

    运行结果:将main方法中content = "我的二维码" 的内容,生成名为“我的二维码.png”的图片并保存到path = "D:/my_QRCode/"路径下

  • 相关阅读:
    java,控制台输入输出,switch等值比较
    关于utf-8(网上查阅)
    Java,基础语法(网上查阅)
    Java,背景,组成
    《DSP using MATLAB》Problem5.16
    《DSP using MATLAB》Problem 5.15
    《DSP using MATLAB》Problem 5.14
    《DSP using MATLAB》Problem 5.13
    《DSP using MATLAB》Problem 5.12
    《DSP using MATLAB》Problem 5.11
  • 原文地址:https://www.cnblogs.com/super-yu/p/8532841.html
Copyright © 2020-2023  润新知