【SpringBoot】生成二维码、在图片中嵌入二维码

news2024/11/25 13:46:38

背景

说明:本文章是介绍,在一张背景图片中嵌入生成的二维码和中文文字。

用处:比如活动分享二维码的时候,提供一张背景图,然后在背景图中嵌入二维码等。

注意:二维码和文字的位置需要你自行调整。

          

一、依赖引入

        <!-- https://mvnrepository.com/artifact/com.google.zxing/zxing-parent -->
        <dependency>
            <groupId>com.google.zxing</groupId>
            <artifactId>zxing-parent</artifactId>
            <version>3.5.0</version>
            <type>pom</type>
        </dependency>

二、创建工具类

生成工具类:ImageFileUtils

1、导入包

import com.google.zxing.BarcodeFormat;
import com.google.zxing.EncodeHintType;
import com.google.zxing.WriterException;
import com.google.zxing.common.BitMatrix;
import com.google.zxing.qrcode.QRCodeWriter;
import com.google.zxing.qrcode.decoder.ErrorCorrectionLevel;
import com.hvit.user.yst.request.CreateQrcodeRequest;
import org.apache.commons.lang3.StringUtils;

import javax.imageio.ImageIO;
import javax.servlet.http.HttpServletResponse;
import java.awt.*;
import java.awt.image.BufferedImage;
import java.io.*;
import java.net.URL;
import java.util.HashMap;
import java.util.Map;
import java.util.UUID;

2、生成二维码

    // 生成二维码图片
    // text:二维码内容
    // size: 二维码尺寸
    private static BufferedImage generateQRCode(String text, int size) {
        Map<EncodeHintType, Object> hints = new HashMap<>();
        hints.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.H);
        hints.put(EncodeHintType.CHARACTER_SET, "UTF-8");
        try {
            QRCodeWriter writer = new QRCodeWriter();
            BitMatrix bitMatrix = writer.encode(text, BarcodeFormat.QR_CODE, size, size, hints);
            int width = bitMatrix.getWidth();
            int height = bitMatrix.getHeight();
            BufferedImage qrImage = new BufferedImage(width, height, BufferedImage.TYPE_INT_ARGB);
            Graphics2D graphics = qrImage.createGraphics();
            graphics.setColor(Color.WHITE);
            graphics.fillRect(0, 0, size, size);
            graphics.setColor(Color.BLACK);

            for (int x = 0; x < size; x++) {
                for (int y = 0; y < size; y++) {
                    if (bitMatrix.get(x, y)) {
                        graphics.fillRect(x, y, 1, 1);
                    }
                }
            }

            // 渲染二维码
            Graphics2D graphics1 = qrImage.createGraphics();
            // 添加蓝色边框
            int borderSize = 10; // 边框大小
            Color myColor = new Color(0x19, 0x76, 0xFF); // 红色
            graphics1.setColor(myColor);
            graphics1.fillRect(0, 0, size, borderSize); // 上边框
            graphics1.fillRect(0, 0, borderSize, size); // 左边框
            graphics1.fillRect(size - borderSize, 0, borderSize, size); // 右边框
            graphics1.fillRect(0, size - borderSize, size, borderSize); // 下边框

            return qrImage;
        } catch (WriterException e) {
            e.printStackTrace();
            return null;
        }
    }

说明:以上生成的二维码是带有蓝色边框的二维码!如图:

                                                       

3、在背景图片上加入文字,并且居中支持\n换行

    // 在图片上添加图片
    private static void addImageToImage(BufferedImage baseImage, BufferedImage overlayImage, int x, int y) {
        Graphics2D g2d = baseImage.createGraphics();
        g2d.drawImage(overlayImage, x, y, null);
        g2d.dispose();
    }

    // 在图片上添加文本,支持手动换行,文本水平居中
    private static void addTextToImage(BufferedImage baseImage, String text, Font font, Color color, int maxWidth, int y) {
        Graphics2D g2d = baseImage.createGraphics();
        g2d.setFont(font);
        g2d.setColor(color);

        FontMetrics fm = g2d.getFontMetrics();
        int lineHeight = fm.getHeight();
        int currentY = y;
        String[] lines = text.split("\n");

        for (String line : lines) {
            int lineWidth = fm.stringWidth(line);
            int lineX = (maxWidth - lineWidth) / 2; // 居中
            g2d.drawString(line, lineX, currentY);
            currentY += lineHeight;
        }

        g2d.dispose();
    }

4、调用方法

 public static void main(String[] args) throws Exception {

        // 1. 读取原始图片
        BufferedImage image = null;
        try {
            image = ImageIO.read(new File("C:\\Users\\caozhen\\Desktop\\图片素材\\1.png")); // 替换成您的图片路径
        } catch (IOException e) {
            e.printStackTrace();
        }

        if (image == null) {
            System.err.println("无法读取图片");
            return;
        }
        // 2. 在图片上添加透明的二维码
        String qrText = "https://qhdm.mzt.zj.gov.cn:9090/szmp/#/wait?code=b20267e5298948a2bca5de8d4a8081a4&type=dz&timeStrap=1694503662057"; // 替换成您的二维码文本
        int qrSize = 500; // 二维码尺寸
        BufferedImage qrCodeImage = generateQRCode(qrText, qrSize);
        int qrX = (image.getWidth() - qrSize) / 2;
        int qrY = 1050; // 设置二维码的垂直位置
        addImageToImage(image, qrCodeImage, qrX, qrY);

        // 3. 在图片上添加中文文本,支持手动换行
        String chineseText = "浙江省湖州市吴兴区妙西镇\n" +
                "妙山村下姚166号";
        Font font = new Font("微软雅黑", Font.BOLD, 70); // 替换成所需的字体和大小
        Color textColor = Color.BLACK; // 文本颜色
        int textX = 20; // 文本左侧的边距
        int textY = 800; // 设置文本的垂直位置
        int textWidth = image.getWidth() - 40; // 文本可用的宽度
        addTextToImage(image, chineseText, font, textColor, textWidth, textY);

        // 4. 保存带有二维码和文本的图片
        try {
            ImageIO.write(image, "png", new File("C:\\Users\\caozhen\\Desktop\\图片素材\\output.png")); // 替换成保存的文件路径
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

5、最终生成的图片成功

      

三、如何生成透明的二维码?

1、生成二维码

    // 生成透明的二维码图片
    private static BufferedImage generateQRCode(String text, int size) {
        Map<EncodeHintType, Object> hints = new HashMap<>();
        hints.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.H);
        hints.put(EncodeHintType.CHARACTER_SET, "UTF-8");
        hints.put(EncodeHintType.MARGIN, 0); // 无边距
        try {
            QRCodeWriter writer = new QRCodeWriter();
            BitMatrix bitMatrix = writer.encode(text, BarcodeFormat.QR_CODE, size, size, hints);
            int width = bitMatrix.getWidth();
            int height = bitMatrix.getHeight();
            BufferedImage qrImage = new BufferedImage(width, height, BufferedImage.TYPE_INT_ARGB);
            // 这里就是生成透明二维码关键之处
            for (int x = 0; x < width; x++) {
                for (int y = 0; y < height; y++) {
                    qrImage.setRGB(x, y, bitMatrix.get(x, y) ? Color.BLACK.getRGB() : new Color(0, 0, 0, 0).getRGB());
                }
            }
            // 渲染二维码
            Graphics2D graphics1 = qrImage.createGraphics();
            // 添加蓝色边框
            int borderSize = 10; // 边框大小
            Color myColor = new Color(0x19, 0x76, 0xFF); // 红色
            graphics1.setColor(myColor);
            graphics1.fillRect(0, 0, size, borderSize); // 上边框
            graphics1.fillRect(0, 0, borderSize, size); // 左边框
            graphics1.fillRect(size - borderSize, 0, borderSize, size); // 右边框
            graphics1.fillRect(0, size - borderSize, size, borderSize); // 下边框

            return qrImage;
        } catch (WriterException e) {
            e.printStackTrace();
            return null;
        }
    }

 2、看看透明二维码结果

     

四、如何希望生成的是浏览器下载图片

1、 代码调整

1.在方法入参的时候加上HttpServletResponse response

  // 保存带有二维码和文本的图片
  // 将图片发送到浏览器
     response.setContentType("image/png");
     response.setHeader("Content-Disposition", "attachment; filename=\"output.png\"");
     OutputStream os = response.getOutputStream();
     ImageIO.write(image, "png", os);
     os.close();

五、完整接口调用流程

1.controller层

@RestController
@RequestMapping("/xxx/user/")
@Api(value = "生成二维码", description = "生成二维码")
public class QrcodeController {


    @RequestMapping(value = "/createAddressQrcode", method = RequestMethod.POST)
    public void createAddressQrcode(HttpServletResponse response) throws IOException {
        ImageFileUtils imageFileUtils = new ImageFileUtils();
        imageFileUtils.createImage(response);
    }

}

 2、工具类ImageFileUtils

public class ImageFileUtils {
    

    public void createImage(HttpServletResponse response) throws IOException {
        // 1. 读取原始图片
        BufferedImage image = null;
        try {
            //这里是读取网络图片
            URL url = new URL("https:xxxxxxxxxxxxxxxxxxxxxxxxxx");
            image = ImageIO.read(url);
        } catch (IOException e) {
            e.printStackTrace();
        }

        if (image == null) {
            return R.error("无法读取图片");
        }
        // 2. 在图片上添加透明的二维码
        String qrText = "https:xxxxxxxxxxxxxxxx"; // 替换成您的二维码文本
        int qrSize = 500; // 二维码尺寸
        BufferedImage qrCodeImage = generateQRCode(qrText, qrSize);
        int qrX = (image.getWidth() - qrSize) / 2;
        int qrY = 1050; // 设置二维码的垂直位置
        addImageToImage(image, qrCodeImage, qrX, qrY);

        // 3. 在图片上添加中文文本,支持手动换行
        String chineseText = createQrcodeRequest.getAddress();
        Font font = new Font("微软雅黑", Font.BOLD, 90); // 替换成所需的字体和大小
        Color textColor = Color.BLACK; // 文本颜色
        int textX = 20; // 文本左侧的边距
        int textY = 800; // 设置文本的垂直位置
        int textWidth = image.getWidth() - 40; // 文本可用的宽度
        addTextToImage(image, chineseText, font, textColor, textWidth, textY);

        // 4. 保存带有二维码和文本的图片
        // 将图片发送到浏览器
        response.setContentType("image/png");
        response.setHeader("Content-Disposition", "attachment; filename=\"output.png\"");
        OutputStream os = response.getOutputStream();
        ImageIO.write(image, "png", os);
        os.close();
      
    }

    // 生成二维码图片
    private static BufferedImage generateQRCode(String text, int size) {
        Map<EncodeHintType, Object> hints = new HashMap<>();
        hints.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.H);
        hints.put(EncodeHintType.CHARACTER_SET, "UTF-8");
        try {
            QRCodeWriter writer = new QRCodeWriter();
            BitMatrix bitMatrix = writer.encode(text, BarcodeFormat.QR_CODE, size, size, hints);
            int width = bitMatrix.getWidth();
            int height = bitMatrix.getHeight();
            BufferedImage qrImage = new BufferedImage(width, height, BufferedImage.TYPE_INT_ARGB);
            Graphics2D graphics = qrImage.createGraphics();
            graphics.setColor(Color.WHITE);
            graphics.fillRect(0, 0, size, size);
            graphics.setColor(Color.BLACK);

            for (int x = 0; x < size; x++) {
                for (int y = 0; y < size; y++) {
                    if (bitMatrix.get(x, y)) {
                        graphics.fillRect(x, y, 1, 1);
                    }
                }
            }

            // 渲染二维码
            Graphics2D graphics1 = qrImage.createGraphics();
            // 添加蓝色边框
            int borderSize = 10; // 边框大小
            Color myColor = new Color(0x19, 0x76, 0xFF); // 红色
            graphics1.setColor(myColor);
            graphics1.fillRect(0, 0, size, borderSize); // 上边框
            graphics1.fillRect(0, 0, borderSize, size); // 左边框
            graphics1.fillRect(size - borderSize, 0, borderSize, size); // 右边框
            graphics1.fillRect(0, size - borderSize, size, borderSize); // 下边框

            return qrImage;
        } catch (WriterException e) {
            e.printStackTrace();
            return null;
        }
    }

    // 在图片上添加图片
    private static void addImageToImage(BufferedImage baseImage, BufferedImage overlayImage, int x, int y) {
        Graphics2D g2d = baseImage.createGraphics();
        g2d.drawImage(overlayImage, x, y, null);
        g2d.dispose();
    }

    // 在图片上添加文本,支持手动换行,文本水平居中
    private static void addTextToImage(BufferedImage baseImage, String text, Font font, Color color, int maxWidth, int y) {
        Graphics2D g2d = baseImage.createGraphics();
        g2d.setFont(font);
        g2d.setColor(color);

        FontMetrics fm = g2d.getFontMetrics();
        int lineHeight = fm.getHeight();
        int currentY = y;
        String[] lines = text.split("\n");

        for (String line : lines) {
            int lineWidth = fm.stringWidth(line);
            int lineX = (maxWidth - lineWidth) / 2; // 居中
            g2d.drawString(line, lineX, currentY);
            currentY += lineHeight;
        }

        g2d.dispose();
    }
}

 六、注意事项

就是当程序部署到linux服务器时,文字格式没有变化的处理方案!

原因:就是linux服务器没有微软雅黑字体,所以导致没有效果。

解决方案是将windows中微软雅黑字体放到linux服务器下即可。

1、到 C:\windows\fonts 复制对应字体库,微软雅黑、宋体、黑体等,各文件后缀可能不一样,有的为ttf,有的为ttc,不影响使用。

2、上传刚才复制的字体库到/usr/share/fonts/zh_CN目录下,如果没有该目录,用命令:mkdir /usr/share/fonts/zh_CN  来创建,然后再上传。

3、修改字体权限,使root以外的用户可以使用这些字体:chmod -R 777 /usr/share/fonts/zh_CN,使用777 赋予全部权限

4、重启springboot项目即可。

 总结

好了,以上就是在图片上嵌入二维码和加入文字的代码了!

有问题可以在评论区留言或者私信我,看到会回复你。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/1009516.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

el-dialog__body的border-radius属性失效解决思路

我的代码 .select-page :deep(.el-dialog__body) {padding: 0;width: 39.35vw;height: 60.03vh;background: #FFFFFF;border-radius: 3.78vh; }我查到的解决方案&#xff1a; 1、设置border&#xff1a;none; 去掉边框&#xff1b; 2、设置border-radius:40px; &#xff1b; 3…

电工-实验图解二极管伏安特性曲线和主要参数

实验图解二极管伏安特性曲线和主要参数 晶体二极管主要是由一个PN结构成&#xff0c;因此它应该与PN结具有相同的特性&#xff0c;即具有单向导电性。下面介绍加在二极管两端的电压和流过二极管的电流之间的关系。即二极管的伏安特性及二极管主要参数。 二极管伏安特性曲线 …

Java高级: 反射

目录 反射反射概述反射获取类的字节码反射获取类的构造器反射获取构造器的作用反射获取成员变量&使用反射获取成员方法反射获取成员方法的作用 反射的应用案例 接下来我们学习的反射、动态代理、注解等知识点&#xff0c;在以后开发中极少用到&#xff0c;这些技术都是以后…

李佳琦掉粉,国货品牌却从“商战大剧”走向“情景喜剧”

李佳琦直播间带货怼网友&#xff0c;“哪里贵了&#xff0c;国货很难的”“这么多年工资没涨&#xff0c;有没有认真工作&#xff1f;”本人事后垂泪道歉仍掉粉百万&#xff0c;但是闻风而来的国货品牌却迎来了一场流量盛宴。 从蜂花蹲点“捡”粉丝&#xff0c;上架三款79元洗…

多元函数的偏导数

目录 偏导数的定义 二元函数偏导数的几何意义 高阶偏导数 全微分 偏导数的定义 偏导数是一种特殊的数学概念&#xff0c;它是针对一个多变量的函数在某个自变量上的导数。 具体来说&#xff0c;对于一个有多个自变量的函数yf(x0, x1, xj, ..., xn)&#xff0c;在自变量xk固…

TCP特性的滑动窗口,流量控制

目录 一、TCP特性滑动窗口 二、TCP特性流量控制&#xff08;作为滑动窗口的补充&#xff09; 一、TCP特性滑动窗口 提高传输效率&#xff08;更准确的说&#xff0c;让TCP在可靠传输的前提下&#xff0c;效率不太拉跨&#xff09;&#x1f49b; 当然你要是想让TCP媲美UDP&…

清水模板是什么材质?

清水模板是建筑施工中常用的一种模板&#xff0c;用于浇筑混凝土结构的形成和支撑。它是指没有进行任何装饰和涂层处理的模板&#xff0c;通常由木材制成&#xff0c;如胶合板、钢模板等。下面是关于清水模板的详细介绍。 清水模板的材质多样&#xff0c;其中最常见的是胶合板。…

ASEMI二极管1N4148(T4)的用途和使用建议

编辑-Z 二极管是一种常见的电子元件&#xff0c;其中1N4148&#xff08;T4&#xff09;是一款广泛使用的快恢复二极管。它具有快速的开关特性和高反向阻挡能力&#xff0c;适用于多种电子应用。本文将介绍1N4148&#xff08;T4&#xff09;的特点、用途和如何正确使用该二极管…

《PostgreSQL中的JSON处理:技巧与应用》

&#x1f337;&#x1f341; 博主猫头虎&#xff08;&#x1f405;&#x1f43e;&#xff09;带您 Go to New World✨&#x1f341; &#x1f405;&#x1f43e;猫头虎建议程序员必备技术栈一览表&#x1f4d6;&#xff1a; &#x1f6e0;️ 全栈技术 Full Stack: &#x1f4da…

centos7更新podman到最新版

实验环境&#xff1a;centos7.7.1908 1.安装podman并查看版本 $ yum install podman -y $ podman -v [rootd7cb4574cd89 /]# podman -v podman version 1.6.4 centos7默认安装的podman版本是1.6.4&#xff0c;现在我们要把podman升级到最新版。 2.删除现有podman $ yum remo…

C语言编程题(三)整型和浮点型混合运算

C语言——整型和浮点型混合运算_int与float的混合计算__好好学习的博客-CSDN博客 请写出165.25(10进制)使用float型存储在计算机中的形式。 在计算机中&#xff0c;浮点数使用IEEE 754标准来表示。根据IEEE 754标准&#xff0c;32位的单精度浮点数&#xff08;float类型&#…

软件流程图怎么画?详细画法看这里

软件流程图怎么画&#xff1f;软件流程图是软件开发过程中必不可少的一环&#xff0c;可以帮助开发人员更好地理解和规划软件开发的流程。在制作软件流程图的时候&#xff0c;我们可以使用一些制作工具。下面就给大家介绍一款好用的绘制工具。 我们可以使用【迅捷画图】来进行流…

28.Xaml ContexMenu控件---->右键菜单

1.运行效果 2.运行源码 a.Xaml源码 <Window x:Class="testView.MainWindow"xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"xmlns:d="http://schemas.mic…

anaconda,cuda,torch,lightning的安装

本博客仅作为初学者参考使用&#xff0c;汇总了多位大牛的博客&#xff0c;如有侵权请联系我删除 anaconda,cuda,torch,lightning的安装 1、Anaconda2、cuda3、pytorch4、lightning5、解决pip执行后导致C盘空间变小问题 1、Anaconda 作用&#xff1a; 1、可创建python包的虚拟…

RabbitMQ —— 初窥门径

前言 RabbitMQ作为当下主流的消息中间件之一&#xff0c;无疑是我们Java后端开发技术成长路线的重要一环&#xff0c;在这篇文章中荔枝将会梳理入门RabbitMQ的知识&#xff0c;文章涉及RabbitMQ的基本概念及其环境配置&#xff0c;荔枝的RabbitMQ是在Docker上部署的&#xff0c…

基于Gradio/Stable Diffusion/Midjourney的AIGC自动图像绘画生成软件 - Fooocus

0.参考 本项目&#xff1a;GitHub - lllyasviel/Fooocus: Focus on prompting and generating 作者&#xff1a;Lvmin Zhang lllyasviel 另一杰作 ContorlNet https://github.com/lllyasviel/ControlNet 模型&#xff1a;https://huggingface.co/stabilityai/stable-diffus…

基于人体呼出气体的电子鼻系统的设计与实现

基于人体呼出气体的电子鼻系统的设计与实现 摘要 电子鼻技术是通过模式识别技术对传感器采集的人体呼出气体进行分类训练的方法。本文研究实现的电子鼻系统包括下面几个部分:首先搭建以Arduino为控制核心的气路采集装置&#xff0c;包括MOS传感器和双阀储气袋构建的传感器阵列和…

探索数据结构:从基础到高级

&#x1f482; 个人网站:【工具大全】【游戏大全】【神级源码资源网】&#x1f91f; 前端学习课程&#xff1a;&#x1f449;【28个案例趣学前端】【400个JS面试题】&#x1f485; 寻找学习交流、摸鱼划水的小伙伴&#xff0c;请点击【摸鱼学习交流群】 数据结构是计算机科学和…

MiniMeters for Mac - 独立音频计量软件,创意音乐的最佳伙伴

MiniMeters for Mac是一款专为Mac用户设计的音频计量软件&#xff0c;它提供了一套功能强大、直观易用的工具&#xff0c;帮助你更好地理解和处理音频。这款软件不仅具备高度的专业性&#xff0c;同时也极具创新性&#xff0c;它的出现将彻底改变你对音频处理的认知。 .安装&a…

macOS 中 聚焦搜索 的使用教程

macOS中的聚焦搜索是一个强大的工具&#xff0c;它可以帮助你快速找到文件、应用程序、联系人、电子邮件、互联网搜索结果等。 下面是macOS中聚焦搜索的使用教程&#xff1a; 1.打开聚焦搜索&#xff1a; 使用键盘快捷键&#xff1a;按下键盘上的Command键和空格键&#xff0…