欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

用Java生成二维码并附带文字信息

程序员文章站 2022-04-05 11:40:47
一、引入依赖 com.google.zxing

一、引入依赖

<dependency>
        <groupid>com.google.zxing</groupid>
        <artifactid>core</artifactid>
        <version>3.3.0</version>
    </dependency>
    <dependency>
        <groupid>com.google.zxing</groupid>
        <artifactid>javase</artifactid>
        <version>3.3.0</version>
    </dependency>

二、生成二维码

2.1 创建实体类

代码如下:

@data
public class qrcodeuser {
    private string username;
    private string usercode;
    private string url;     //二维码跳转的链接
}

2.2 创建qrcodeutil

代码如下:

import java.awt.*;
import java.awt.image.bufferedimage;
import java.io.file;
import java.io.outputstream;
import java.util.*;
import java.util.list;
import javax.imageio.imageio;

import com.demo.demo.mapper.assetsvo;
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;
import org.apache.commons.lang3.stringutils;




public class qrcodeutil {

    //设置默认参数,可以根据需要进行修改
    private static final int qrcolor = 0xff000000; // 默认是黑色
    private static final int bgwhite = 0xffffffff; // 背景颜色
    private static final int width = 180; // 二维码宽
    private static final int height = 180; // 二维码高

    //设置高度常量
    private static final int  usernamehigh = 10;
    private static final int usercodehigh = -20;

	//设置字体宽度
    private static final int strwidth = 130; 


    /**用于设置qr二维码参数
     * com.google.zxing.encodehinttype:编码提示类型,枚举类型
     * encodehinttype.character_set:设置字符编码类型
     * encodehinttype.error_correction:设置误差校正
     * errorcorrectionlevel:误差校正等级,l = ~7% correction、m = ~15% correction、q = ~25% correction、h = ~30% correction
     * 不设置时,默认为 l 等级,等级不一样,生成的图案不同,但扫描的结果是一样的
     * encodehinttype.margin:设置二维码边距,单位像素,值越小,二维码距离四周越近
     * */
    private static map<encodehinttype, object> hints = new hashmap<encodehinttype, object>() {
        private static final long serialversionuid = 1l;
        {
            put(encodehinttype.error_correction, errorcorrectionlevel.h);// 设置qr二维码的纠错级别(h为*别)具体级别信息
            put(encodehinttype.character_set, "utf-8");// 设置编码方式
            put(encodehinttype.margin, 0);
        }
    };


    /**
     * 生成二维码和附带字体参数
     */
    private static bufferedimage createqr(qrcodeuser qrcodeuser, font font) throws writerexception{
        //设置二维码旁边的文字信息
        string username = "员工姓名:"+qrcodeuser.getusername();
        string usercode = "員工工號:"+qrcodeuser.getusername();
        string qrurl = qrcodeuser.geturl();    //这里以百度为例

        /**
         * multiformatwriter:多格式写入,这是一个工厂类,里面重载了两个 encode 方法,用于写入条形码或二维码
         *      encode(string contents,barcodeformat format,int width, int height,map<encodehinttype,?> hints)
         *      contents:条形码/二维码内容
         *      format:编码类型,如 条形码,二维码 等
         *      width:码的宽度
         *      height:码的高度
         *      hints:码内容的编码类型
         * barcodeformat:枚举该程序包已知的条形码格式,即创建何种码,如 1 维的条形码,2 维的二维码 等
         * bitmatrix:位(比特)矩阵或叫2d矩阵,也就是需要的二维码
         */
        multiformatwriter multiformatwriter = new multiformatwriter();

        /**参数顺序分别为:编码内容,编码类型,生成图片宽度,生成图片高度,设置参数
         * bitmatrix 的 get(int x, int y) 获取比特矩阵内容,指定位置有值,则返回true,将其设置为前景色,否则设置为背景色
         * bufferedimage 的 setrgb(int x, int y, int rgb) 方法设置图像像素
         *      x:像素位置的横坐标,即列
         *      y:像素位置的纵坐标,即行
         *      rgb:像素的值,采用 16 进制,如 0xffffff 白色
         */
        bitmatrix bm = multiformatwriter.encode(qrurl, barcodeformat.qr_code, width, height, hints);
        //创建一个图片缓冲区存放二维码图片
        bufferedimage image = new bufferedimage(width, height, bufferedimage.type_int_rgb);
        // 开始利用二维码数据创建bitmap图片,分别设为黑(0xffffffff)白(0xff000000)两色
        for (int x = 0; x < width; x++) {
            for (int y = 0; y < height; y++) {
                image.setrgb(x, y, bm.get(x, y) ? qrcolor : bgwhite);
            }
        }
        int height = image.getheight();

        // ------------------------------------------自定义文本描述-------------------------------------------------
        if (stringutils.isnotempty(qrcodeuser.getusercode())) {
            //在内存创建图片缓冲区  这里设置画板的宽高和类型
            bufferedimage outimage = new bufferedimage(600, 350, bufferedimage.type_4byte_abgr);

            //创建画布
            graphics2d outg = outimage.creategraphics();

            // 在画布上画上二维码  x轴y轴,宽度高度
            outg.drawimage(image, 10, 30, image.getwidth(), image.getheight(), null);

            // 画文字到新的面板
            outg.setcolor(color.black);
             // 字体、字型、字号
            outg.setfont(font);

            //获取字体宽度
            int usernamewidth = outg.getfontmetrics().stringwidth(username);
            int usercodewidth = outg.getfontmetrics().stringwidth(usercode);

			//drawstring(文字信息、x轴、y轴)方法根据参数设置文字的坐标轴 ,根据需要来进行调整
            outg.drawstring(username, 300 - usernamewidth / 2, height - usernamehigh);    //   员工名字
            outg.drawstring(usercode, 300 - usercodewidth / 2, height - usercodehigh);      //   员工工号
            //  例: outg.drawstring(depatmentname,  65 - strwidth / 2, height + (outimage.getheight() - height) / 2 - h3); 根据需求自行计算需要的宽高

            outg.dispose();
            outimage.flush();
            image = outimage;
        }
        image.flush();
        return image;
    }

}

此时二维码已经可以生成


2.3 生成单条二维码

 /**
    * @author: zyf
    * @date: 2021/4/27
    * description: 生成单条二维码附带文字信息,导出到指定路径
    **/
    public void drawlogoqrcode(qrcodeuser qrcodeuser) {

        fileoutputstream fileoutputstream = null;

        try {
            fileoutputstream = new fileoutputstream("d:"+ file.separator+"二维码" + qrcodeuser.getusercode() + ".png");  //保存路径输出流,将图片输出到指定路径
            font fontchinese = new font("黑体",  font.bold, 28);
            bufferedimage image = qrcodeutil.createqr(qrcodeuser,fontchinese);

            boolean crateqrcode = imageio.write(image, "png", fileoutputstream);

        }catch (writerexception | ioexception e) {
            log.error("二维码写入io流异常",e);
        }finally {
            try {
                if (null != fileoutputstream){
                    fileoutputstream.flush();
                    fileoutputstream.close();
                }
            }catch (ioexception ioe){
                log.error("二维码关流异常",ioe);
            }
        }
    }

用Java生成二维码并附带文字信息

2.4 批量生产二维码

/**
    * @author: zyf
    * @date: 2021/4/27
    * description: 批量生产二维码,导出到指定路径
    **/
    public void drawlogoqrcode(list<qrcodeuser> qrcodeuserlist) {

        fileoutputstream fileoutputstream = null;
		//咱们简单一点,直接循环调用
        try {	
        	for(qrcodeuser qrcodeuser:qrcodeuserlist){
	            fileoutputstream = new fileoutputstream("d:"+ file.separator+"二维码" + qrcodeuser.getusercode() + ".png");  //保存路径输出流,将图片输出到指定路径
	            font fontchinese = new font("黑体",  font.bold, 28);

		
	            //返回的image就是二维码图片,可以根据需要进行后续的处理,比如全都写入指定文件夹进行压缩或者写入pdf文件
	            bufferedimage image = qrcodeutil.createqr(qrcodeuser,fontchinese);
	
				//写出到指定路径
	            boolean crateqrcode = imageio.write(image, "png", fileoutputstream);

			}
        }catch (writerexception | ioexception e) {
            log.error("二维码写入io流异常",e);
        }finally {
            try {
                if (null != fileoutputstream){
                    fileoutputstream.flush();
                    fileoutputstream.close();
                }
            }catch (ioexception ioe){
                log.error("二维码关流异常",ioe);
            }
        }
    }

三、生成二维码写入pdf文件

3.1 引入依赖

<dependency>
      <groupid>com.itextpdf</groupid>
      <artifactid>itextpdf</artifactid>
      <version>5.5.13</version>
    </dependency>
    <!-- https://mvnrepository.com/artifact/com.itextpdf/itext-asian -->
    <dependency>
      <groupid>com.itextpdf</groupid>
      <artifactid>itext-asian</artifactid>
      <version>5.2.0</version>
    </dependency>

3.2 替换工具类中的drawlogoqrcode方法

public static void drawlogoqrcode(outputstream outputstream, qrcodeuser qrcodeuser) {

        try {
        	font fontchinese = new font("黑体",  font.bold, 28);
            bufferedimage image = createqr(qrcodeuser,fontchinese);
            bytearrayoutputstream bytearrayoutputstream = new bytearrayoutputstream();  //字节数组输出流
            boolean createqrcode = imageio.write(image, "png", bytearrayoutputstream);
            if(!createqrcode){
				log.error("二维码写入输出流失败");
			}
         
            /*生成pdf*/
            document document = new document(pagesize.a4, 0, 0, 0, 0);
            pdfwriter.getinstance(document, outputstream);  //写出pdf
            document.open();    //打开文件

            /*pdf写入图片*/
            com.lowagie.text.image image2 = com.lowagie.text.image.getinstance(bytearrayoutputstream.tobytearray());
            float documentwidth = document.getpagesize().getwidth() - document.leftmargin() - document.rightmargin();
            float documentheight = documentwidth / 300 * 80;// 重新设置宽高
            image2.scaleabsolute(documentwidth, documentheight);// 重新设置宽高
            document.add(image2);
            document.close();   //关闭文件

            bytearrayoutputstream.close();
        } catch (exception e) {
            e.printstacktrace();
        }
    }

3.3 pdf中文乱码解决

linux系统或者docker发布的项目中,不包含中文字体,会导致中文乱码,所以pdf中的中文不能显示

linux系统中路径  /usr/share/fonts/   下是字体文件,复制windows本地的字体文件到这里面就可以,一般使用宋体
docker系统中,需要配置

![在这里插入图片描述](https://img-blog.csdnimg.cn/20210428225743647.png?x-oss-process=image/watermark,type_zmfuz3pozw5nagvpdgk,shadow_10,text_ahr0chm6ly9ibg9nlmnzzg4ubmv0l3dlaxhpbl80njaxnda3nq==,size_16,color_ffffff,t_70)

到此这篇关于用java生成二维码并附带文字信息的文章就介绍到这了,更多相关java生成二维码内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!