二维码utils希望对大家有帮助

Posted 无限的知识,无限的海洋

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了二维码utils希望对大家有帮助相关的知识,希望对你有一定的参考价值。

package cn.itcast.utils;
 
import java.io.File;
import java.nio.file.Path;
import java.util.HashMap;
 
import com.google.zxing.BarcodeFormat;
import com.google.zxing.EncodeHintType;
import com.google.zxing.MultiFormatWriter;
import com.google.zxing.WriterException;
import com.google.zxing.client.j2se.MatrixToImageWriter;
import com.google.zxing.common.BitMatrix;
import com.google.zxing.datamatrix.encoder.ErrorCorrection;
import com.google.zxing.qrcode.decoder.ErrorCorrectionLevel;
 
public class ZxingUtils {
    
    public static void main(String[] args) {
        //定义宽度,高度,内容,格式
        int width = 300;
        int higth = 300;
        String format = "png";
        String content = "http://www.itcast.cn/";
        //定义一个map
        HashMap hints = new HashMap<>();
        hints.put(EncodeHintType.CHARACTER_SET, "utf-8");
        hints.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.M);
        hints.put(EncodeHintType.MARGIN, 2);
        try {
            BitMatrix bitMatrix =  new MultiFormatWriter().encode(content,BarcodeFormat.QR_CODE, width, higth,hints);
            Path file = new File("D:/code/img.png").toPath();
            MatrixToImageWriter.writeToPath(bitMatrix, format, file );
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
 
}

 

以上是关于二维码utils希望对大家有帮助的主要内容,如果未能解决你的问题,请参考以下文章

微信小程序如何生成二维码?

这些例子感觉很实用,希望对你也有帮助

这些例子感觉很实用,希望对你也有帮助

干货视频5G入门介绍

微信开发——带参数二维码的使用

PHP生成带logo图像二维码的两种方法