java生成圆形二维码logo

自定义生成二维码,可以根据自己的喜欢在二维码中添加图片。有些代码是参考网上某位大神的,如有相同之处,请给我留言,我加上您的名字或者不让参考发表,则可删除。
jar提取地址:
链接: https://pan.baidu.com/s/1nXiTbQXvNQUUYXsvLbSeyg 提取码: pdnd


import com.swetake.util.Qrcode;

import javax.imageio.ImageIO;
import java.awt.*;
import java.awt.geom.Ellipse2D;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;

/**
 *  二维码生成工具类
 */
public class QRCodeUtil {
    //生成二维码图片
    public static void getQrcode(String content,String imgPath) throws IOException {

        int width=140;
        int height=140;
        //创建二维码
        Qrcode  qrcode=new Qrcode();
        //设置二维码的纠错值
        qrcode.setQrcodeErrorCorrect('M');
        //设置二维码编码方式
        qrcode.setQrcodeEncodeMode('B');
        //设置二维码的版本,也叫信息容量
        qrcode.setQrcodeVersion(7);
        System.out.println(content);
        //将信息转化为字节数组
        byte[] contentByte=content.getBytes("gb2312");
        //相当于创建一个画布
        BufferedImage bufferedImage=new BufferedImage(width,height,BufferedImage.TYPE_INT_BGR);
        //得到画笔
        Graphics2D gs=bufferedImage.createGraphics();
        //设置背景颜色
        gs.setBackground(Color.white);
        //画出一个矩形区域
        gs.clearRect(0,0,width,height);
        //设置图形颜色
        gs.setColor(Color.red);
        // 设置偏移量 不设置可能导致解析出错
        int pixoff = 2;
        //输出二维码图片
        if(contentByte.length>0 && contentByte.length<120){
            boolean[][] codeOut=qrcode.calQrcode(contentByte);
            //循环输出,形成矩阵
            for(int i=0;i0 && contentByte.length<120){
            boolean[][] codeOut=qrcode.calQrcode(contentByte);
            //循环输出,形成矩阵
            for(int i=0;i

你可能感兴趣的:(java)