Java给二维码添加背景
0、首先我们的背景长这个样子
需求就是要把中间的二维码替换掉,并且在下方添加文字
1、导入google的jar包
<!-- zxing生成二维码 -->
<dependency>
<groupId>com.google.zxing</groupId>
<artifactId>core</artifactId>
<version>3.3.3</version>
</dependency>
<dependency>
<groupId>com.google.zxing</groupId>
<artifactId>javase</artifactId>
<version>3.3.3</version>
</dependency>
2、主要代码
// FRONT_COLOR:二维码前景色,0x000000 表示黑色
private static final int FRONT_COLOR = 0x000000;
// BACKGROUND_COLOR:二维码背景色,0xFFFFFF 表示白色
// 演示用 16 进制表示,和前端页面 CSS 的取色是一样的,注意前后景颜色应该对比明显,如常见的黑白
private static final int BACKGROUND_COLOR = 0xFFFFFF;
// 设置QR二维码参数信息
private static final Map<EncodeHintType, Object> hints = new HashMap<EncodeHintType, Object>() {
{
put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.M);// 设置QR二维码的纠错级别(H为最高级别)
put(EncodeHintType.CHARACTER_SET, "utf-8");// 设置编码方式
put(EncodeHintType.MARGIN, 2);// 白边
}
};
/**
* 生成二维码图片+背景+文字描述
*
* @param codeFile 生成图地址
* @param bgImgFile 背景图地址
* @param WIDTH 二维码宽度
* @param HEIGHT 二维码高度
* @param qrUrl 二维码识别地址
* @param imgCenterX 二维码x轴居中
* @param imgCenterY 二维码y轴居中
* @param imagesX 二维码x轴方向
* @param imagesY 二维码y轴方向
* @param text 文字
*/
public static void CreatQRCode(File codeFile, File bgImgFile,
Integer WIDTH, Integer HEIGHT, String qrUrl,
Boolean imgCenterX, Boolean imgCenterY,
Integer imagesX, Integer imagesY,
List<TextContent> text) {
try {
MultiFormatWriter multiFormatWriter = new MultiFormatWriter();
// 参数顺序分别为: 编码内容,编码类型,生成图片宽度,生成图片高度,设置参数
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) ? FRONT_COLOR : BACKGROUND_COLOR);
}
}
// 添加背景图片
BufferedImage backgroundImage = ImageIO.read(bgImgFile);
// 图片宽度
int bgWidth = backgroundImage.getWidth();
int bgHeight = backgroundImage.getHeight();
log.info("背景宽度:{};背景高度:{}", bgWidth, bgHeight);
// 二维码宽度
int qrWidth = image.getWidth();
int qrHeight = image.getHeight();
// 距离背景图片x边的距离,居中显示
int disX = imagesX;
if (Boolean.TRUE.equals(imgCenterX)) {
disX = (bgWidth - qrWidth) / 2;
}
int disY = imagesY;
if (Boolean.TRUE.equals(imgCenterY)) {
disY = (bgHeight - qrHeight) / 2;
}
// 创建图形
Graphics2D rng = backgroundImage.createGraphics();
rng.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_ATOP));
rng.drawImage(image, disX, disY, WIDTH, HEIGHT, null);
if (text != null && text.size() > 0) {
for (TextContent content : text) {
// 文字描述参数设置
Color textColor = Color.WHITE;
Graphics2D textRng = backgroundImage.createGraphics();
textRng.setColor(textColor);
textRng.drawImage(backgroundImage, 0, 0, null);
textRng.setFont(content.getFont());
// 设置字体颜色
textRng.setColor(content.getColor());
int disTextX = content.getAxisX();
int disTextY = content.getAxisY();
FontMetrics metrics = FontDesignMetrics.getMetrics(content.getFont());
// 垂直居中
if (Boolean.TRUE.equals(content.getCenterX())) {
int textWidth = metrics.stringWidth(content.getDescribe());
disTextX = (bgWidth - textWidth) / 2;
}
// 竖直居中
if (Boolean.TRUE.equals(content.getCenterY())) {
int textHeight = metrics.getHeight();
disTextY = (bgHeight - textHeight) / 2 + metrics.getAscent();
}
// 文字显示位置
textRng.drawString(content.getDescribe(), disTextX, disTextY);
}
}
rng.dispose();
image = backgroundImage;
image.flush();
ImageIO.write(image, "png", codeFile);
} catch (Exception e) {
e.printStackTrace();
}
}
@Data
@Accessors(chain = true)
public static class TextContent {
/**
* 文字描述
*/
private String describe;
/**
* X轴
*/
private Integer axisX;
/**
* Y轴
*/
private Integer axisY;
/**
* X轴居中
*/
private Boolean centerX = false;
/**
* Y轴居中
*/
private Boolean centerY = false;
/**
* 文字颜色
*/
private Color color = Color.BLACK;
/**
* 文字样式 字体、类型(BOLD加粗/ PLAIN平常)、大小
*/
private Font font = new Font("微软雅黑", Font.PLAIN, 20);
}
/**
* 测试
*/
public static void main(String[] args) {
File bgImgFile = new File("D:\\background.png");//背景图片
File QrCodeFile = new File("D:\\myqrcode.png");//生成图片位置
String url = "https://blog.youkuaiyun.com/qq_57581439";//二维码链接
// 二维码生成
// 生成图地址,背景图地址,二维码宽度,二维码高度,二维码识别地址,文字描述1,文字描述2,文字大小,图片x轴方向,图片y轴方向,文字1||2xy轴方向
CreatQRCode(QrCodeFile, bgImgFile,
500, 500, url,
true, true,
0, 0,
Lists.newArrayList(
new TextContent()
.setAxisX(50)
.setAxisY(1030)
.setDescribe("我认不到你")
.setCenterX(true)
.setCenterY(false)
.setColor(Color.WHITE)
.setFont(new Font("微软雅黑", Font.BOLD, 50))
,
new TextContent()
.setAxisX(50)
.setAxisY(300)
.setDescribe("666666666")
.setCenterX(true)
.setCenterY(false)
.setColor(Color.BLUE)
.setFont(new Font("微软雅黑", Font.BOLD, 100))
)
);
}
3、测试生成的图片
4、二维码生成工具类
package com.example.test.utils;
import com.alibaba.druid.util.StringUtils;
import com.google.common.collect.Lists;
import com.google.zxing.BarcodeFormat;
import com.google.zxing.EncodeHintType;
import com.google.zxing.MultiFormatWriter;
import com.google.zxing.WriterException;
import com.google.zxing.common.BitMatrix;
import com.google.zxing.qrcode.decoder.ErrorCorrectionLevel;
import lombok.Data;
import lombok.experimental.Accessors;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import sun.font.FontDesignMetrics;
import sun.misc.BASE64Encoder;
import javax.imageio.ImageIO;
import javax.servlet.http.HttpServletResponse;
import javax.swing.filechooser.FileSystemView;
import java.awt.*;
import java.awt.image.BufferedImage;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.PrintWriter;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
* 二维码工具
**/
public class QRCodeUtil {
private static final Logger log= LoggerFactory.getLogger(QRCodeUtil.class);
// CODE_WIDTH:二维码宽度,单位像素
private static final int CODE_WIDTH = 400;
// CODE_HEIGHT:二维码高度,单位像素
private static final int CODE_HEIGHT = 400;
// FRONT_COLOR:二维码前景色,0x000000 表示黑色
private static final int FRONT_COLOR = 0x000000;
// BACKGROUND_COLOR:二维码背景色,0xFFFFFF 表示白色
// 演示用 16 进制表示,和前端页面 CSS 的取色是一样的,注意前后景颜色应该对比明显,如常见的黑白
private static final int BACKGROUND_COLOR = 0xFFFFFF;
// 设置QR二维码参数信息
private static final Map<EncodeHintType, Object> hints = new HashMap<EncodeHintType, Object>() {
{
put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.M);// 设置QR二维码的纠错级别(H为最高级别)
put(EncodeHintType.CHARACTER_SET, "utf-8");// 设置编码方式
put(EncodeHintType.MARGIN, 2);// 白边
}
};
/**
* 生成本地二维码图片
* @param content
* @param codeImgFileSaveDir
* @param fileName
*/
public static void createCodeToFile(String content, File codeImgFileSaveDir, String fileName) {
try {
if (StringUtils.isEmpty(content) || StringUtils.isEmpty(fileName)) {
return;
}
content = content.trim();
if (codeImgFileSaveDir==null || codeImgFileSaveDir.isFile()) {
//二维码图片存在目录为空,默认放在桌面...
codeImgFileSaveDir = FileSystemView.getFileSystemView().getHomeDirectory();
}
if (!codeImgFileSaveDir.exists()) {
//二维码图片存在目录不存在,开始创建...
codeImgFileSaveDir.mkdirs();
}
//核心代码-生成二维码
BufferedImage bufferedImage = getBufferedImage(content);
File codeImgFile = new File(codeImgFileSaveDir, fileName);
ImageIO.write(bufferedImage, "png", codeImgFile);
log.info("二维码图片生成成功:" + codeImgFile.getPath());
} catch (Exception e) {
log.error("生成二维码失败:",e);
}
}
/**
* 生成二维码并输出到输出流, 通常用于输出到网页上进行显示,输出到网页与输出到磁盘上的文件中,区别在于最后一句 ImageIO.write
* write(RenderedImage im,String formatName,File output):写到文件中
* write(RenderedImage im,String formatName,OutputStream output):输出到输出流中
* @param content :二维码内容
* @param response :响应流,用于输出
*/
public static void createCodeToOutputStream(String content, HttpServletResponse response) {
try(PrintWriter out = response.getWriter()) {
if (StringUtils.isEmpty(content)) {
return;
}
response.setHeader("Content-type", "text/html;charset=UTF-8");
response.setContentType("text/html;charset=UTF-8");
response.setCharacterEncoding("UTF-8");
content = content.trim();
//核心代码-生成二维码
BufferedImage bufferedImage = getBufferedImage(content);
ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
//区别就是这一句,输出到输出流中,如果第三个参数是 File,则输出到文件中
ImageIO.write(bufferedImage, "png", outputStream);
BASE64Encoder base64 = new BASE64Encoder();
String result = base64.encode(outputStream.toByteArray());
out.write(result);
out.flush();
log.info("二维码图片生成到输出流成功...");
} catch (Exception e) {
log.error("生成二维码失败:",e);
}
}
// 核心代码-生成二维码
private static BufferedImage getBufferedImage(String content) throws WriterException {
// com.google.zxing.EncodeHintType:编码提示类型,枚举类型
Map<EncodeHintType, Object> hints = new HashMap();
// EncodeHintType.CHARACTER_SET:设置字符编码类型
hints.put(EncodeHintType.CHARACTER_SET, "UTF-8");
// EncodeHintType.ERROR_CORRECTION:设置误差校正
// ErrorCorrectionLevel:误差校正等级,L = ~7% correction、M = ~15% correction、Q = ~25% correction、H = ~30% correction
// 不设置时,默认为 L 等级,等级不一样,生成的图案不同,但扫描的结果是一样的
hints.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.M);
// EncodeHintType.MARGIN:设置二维码边距,单位像素,值越小,二维码距离四周越近
hints.put(EncodeHintType.MARGIN, 1);
MultiFormatWriter multiFormatWriter = new MultiFormatWriter();
BitMatrix bitMatrix = multiFormatWriter.encode(content, BarcodeFormat.QR_CODE, CODE_WIDTH, CODE_HEIGHT, hints);
BufferedImage bufferedImage = new BufferedImage(CODE_WIDTH, CODE_HEIGHT, BufferedImage.TYPE_INT_BGR);
for (int x = 0; x < CODE_WIDTH; x++) {
for (int y = 0; y < CODE_HEIGHT; y++) {
bufferedImage.setRGB(x, y, bitMatrix.get(x, y) ? FRONT_COLOR : BACKGROUND_COLOR);
}
}
return bufferedImage;
}
/**
* 生成二维码图片+背景+文字描述
*
* @param codeFile 生成图地址
* @param bgImgFile 背景图地址
* @param WIDTH 二维码宽度
* @param HEIGHT 二维码高度
* @param qrUrl 二维码识别地址
* @param imgCenterX 二维码x轴居中
* @param imgCenterY 二维码y轴居中
* @param imagesX 二维码x轴方向
* @param imagesY 二维码y轴方向
* @param text 文字
*/
public static void CreatQRCode(File codeFile, File bgImgFile,
Integer WIDTH, Integer HEIGHT, String qrUrl,
Boolean imgCenterX, Boolean imgCenterY,
Integer imagesX, Integer imagesY,
List<TextContent> text) {
try {
MultiFormatWriter multiFormatWriter = new MultiFormatWriter();
// 参数顺序分别为: 编码内容,编码类型,生成图片宽度,生成图片高度,设置参数
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) ? FRONT_COLOR : BACKGROUND_COLOR);
}
}
// 添加背景图片
BufferedImage backgroundImage = ImageIO.read(bgImgFile);
// 图片宽度
int bgWidth = backgroundImage.getWidth();
int bgHeight = backgroundImage.getHeight();
log.info("背景宽度:{};背景高度:{}", bgWidth, bgHeight);
// 二维码宽度
int qrWidth = image.getWidth();
int qrHeight = image.getHeight();
// 距离背景图片x边的距离,居中显示
int disX = imagesX;
if (Boolean.TRUE.equals(imgCenterX)) {
disX = (bgWidth - qrWidth) / 2;
}
int disY = imagesY;
if (Boolean.TRUE.equals(imgCenterY)) {
disY = (bgHeight - qrHeight) / 2;
}
// 创建图形
Graphics2D rng = backgroundImage.createGraphics();
rng.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_ATOP));
rng.drawImage(image, disX, disY, WIDTH, HEIGHT, null);
if (text != null && text.size() > 0) {
for (TextContent content : text) {
// 文字描述参数设置
Color textColor = Color.WHITE;
Graphics2D textRng = backgroundImage.createGraphics();
textRng.setColor(textColor);
textRng.drawImage(backgroundImage, 0, 0, null);
textRng.setFont(content.getFont());
// 设置字体颜色
textRng.setColor(content.getColor());
int disTextX = content.getAxisX();
int disTextY = content.getAxisY();
FontMetrics metrics = FontDesignMetrics.getMetrics(content.getFont());
// 垂直居中
if (Boolean.TRUE.equals(content.getCenterX())) {
int textWidth = metrics.stringWidth(content.getDescribe());
disTextX = (bgWidth - textWidth) / 2;
}
// 竖直居中
if (Boolean.TRUE.equals(content.getCenterY())) {
int textHeight = metrics.getHeight();
disTextY = (bgHeight - textHeight) / 2 + metrics.getAscent();
}
// 文字显示位置
textRng.drawString(content.getDescribe(), disTextX, disTextY);
}
}
rng.dispose();
image = backgroundImage;
image.flush();
ImageIO.write(image, "png", codeFile);
} catch (Exception e) {
e.printStackTrace();
}
}
@Data
@Accessors(chain = true)
public static class TextContent {
/**
* 文字描述
*/
private String describe;
/**
* X轴
*/
private Integer axisX;
/**
* Y轴
*/
private Integer axisY;
/**
* X轴居中
*/
private Boolean centerX = false;
/**
* Y轴居中
*/
private Boolean centerY = false;
/**
* 文字颜色
*/
private Color color = Color.BLACK;
/**
* 文字样式 字体、类型(BOLD加粗/ PLAIN平常)、大小
*/
private Font font = new Font("微软雅黑", Font.PLAIN, 20);
}
/**
* 测试
*/
public static void main(String[] args) {
File bgImgFile = new File("D:\\background.png");//背景图片
File QrCodeFile = new File("D:\\myqrcode.png");//生成图片位置
String url = "https://blog.youkuaiyun.com/qq_57581439";//二维码链接
// 二维码生成
// 生成图地址,背景图地址,二维码宽度,二维码高度,二维码识别地址,文字描述1,文字描述2,文字大小,图片x轴方向,图片y轴方向,文字1||2xy轴方向
CreatQRCode(QrCodeFile, bgImgFile,
500, 500, url,
true, true,
0, 0,
Lists.newArrayList(
new TextContent()
.setAxisX(50)
.setAxisY(1030)
.setDescribe("我认不到你")
.setCenterX(true)
.setCenterY(false)
.setColor(Color.WHITE)
.setFont(new Font("微软雅黑", Font.BOLD, 50))
,
new TextContent()
.setAxisX(50)
.setAxisY(300)
.setDescribe("666666666")
.setCenterX(true)
.setCenterY(false)
.setColor(Color.BLUE)
.setFont(new Font("微软雅黑", Font.BOLD, 100))
)
);
}
}