Google zxing 生成带logo的二维码图片

环境准备

  • 开发环境

    • JDK 1.8
    • SpringBoot2.2.1
    • Maven 3.2+
  • 开发工具

    • IntelliJ IDEA
    • smartGit
    • Navicat15

添加maven配置

<dependency><groupId>com.google.zxing</groupId><artifactId>core</artifactId><version>3.4.0</version>
</dependency>
<dependency><groupId>com.google.zxing</groupId><artifactId>javase</artifactId><version>3.4.0</version>
</dependency>

创建比特矩阵

先创建比特矩阵,设置默认的宽度、高度、后缀名等等

 private static final String DEFAULT_CHAR_SET = "UTF-8";private static final String DEFAULT_FORMAT_NAME = "JPG";// 二维码宽度
private static final int DEFAULT_QR_CODE_WIDTH = 300;
// 二维码高度
private static final int DEFAULT_QR_CODE_HEIGHT = 300;/*** 创建BitMatrix比特矩阵* @Date 2023/09/24 22:29* @Param contents 二维码里的内容* @Param width 二维码宽度* @param height 二维码高度* @return com.google.zxing.common.BitMatrix*/
public static  BitMatrix createBitMatrix(String contents , int width , int height) throws WriterException, IOException {if (ObjectUtil.isNull(width)) {width = DEFAULT_QR_CODE_WIDTH;}if (ObjectUtil.isNull(height)) {height = DEFAULT_QR_CODE_HEIGHT;}Hashtable<EncodeHintType, Object> hints = new Hashtable<EncodeHintType, Object>();hints.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.H); // 纠错等级L,M,Q,Hhints.put(EncodeHintType.CHARACTER_SET, DEFAULT_CHAR_SET);// 编码utf-8hints.put(EncodeHintType.MARGIN, 1);  // 边距// 创建比特矩阵BitMatrix bitMatrix = new MultiFormatWriter().encode(contents,BarcodeFormat.QR_CODE, width, height, hints);return bitMatrix;}

转换为BufferedImage

创建好比特矩阵后,转换为BufferedImage

 /*** 转换为BufferedImage* @Date 2023/09/24 22:32* @Param [bitMatrix]* @return java.awt.image.BufferedImage*/
public static BufferedImage toBufferedImage(BitMatrix bitMatrix) throws IOException, WriterException {MatrixToImageConfig matrixToImageConfig = new MatrixToImageConfig(0xFF000001, 0xFFFFFFFF);BufferedImage bufferedImage = MatrixToImageWriter.toBufferedImage(bitMatrix, matrixToImageConfig);return bufferedImage;
}

加上二维码logo

给创建的二维码BufferedImage加上logo

 /*** 给二维码添加logo* @Date 2023/09/24 22:33* @Param [bufferedImage, logoFile]* @return java.awt.image.BufferedImage*/public static BufferedImage addQrCodeLogo(BufferedImage bufferedImage, File logoFile) throws IOException {Graphics2D graphics = bufferedImage.createGraphics();int matrixWidth = bufferedImage.getWidth();int matrixHeigh = bufferedImage.getHeight();// 读取logo图片文件BufferedImage logo = ImageIO.read(logoFile);int logoWidth = logo.getWidth();int logoHeight = logo.getHeight();//  计算logo放置位置int x = bufferedImage.getWidth()  / 5*2;int y = bufferedImage.getHeight() / 5*2;int width = matrixWidth / 5;int height = matrixHeigh / 5;// 开始绘制图片graphics.drawImage(logo, x, y, width, height, null);graphics.drawRoundRect(x, y, logoWidth, logoHeight, 15, 15);graphics.setStroke(new BasicStroke(5.0F, 1, 1));graphics.setColor(Color.white);graphics.drawRect(x, y, logoWidth, logoHeight);graphics.dispose();bufferedImage.flush();return bufferedImage;}

测试

public static void main(String[] args) throws Exception {BufferedImage bufferedImage = toBufferedImage(createBitMatrix("https://blog.csdn.net", 300, 300));ImageIO.write(bufferedImage, "png", new File("D:/qrcode.jpg"));System.out.println(decodeQrCode(bufferedImage));BufferedImage logoQrCode = addQrCodeLogo(bufferedImage, new File("D://logo.png"));ImageIO.write(logoQrCode, "png", new File("D:/logoQrcode.jpg"));}

创建不带logo的二维码图片
在这里插入图片描述
创建带logo的二维码图片
在这里插入图片描述

附录

package com.example.common.util.qrcode;import cn.hutool.core.codec.Base64;
import cn.hutool.core.util.ObjectUtil;
import cn.hutool.core.util.StrUtil;
import com.google.zxing.*;
import com.google.zxing.client.j2se.BufferedImageLuminanceSource;
import com.google.zxing.client.j2se.MatrixToImageConfig;
import com.google.zxing.client.j2se.MatrixToImageWriter;
import com.google.zxing.common.BitMatrix;
import com.google.zxing.common.HybridBinarizer;
import com.google.zxing.qrcode.decoder.ErrorCorrectionLevel;import javax.imageio.ImageIO;
import java.awt.*;
import java.awt.image.BufferedImage;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.IOException;
import java.util.Hashtable;public class QrCodeGenerator {private static final String DEFAULT_CHAR_SET = "UTF-8";private static final String DEFAULT_FORMAT_NAME = "JPG";// 二维码宽度private static final int DEFAULT_QR_CODE_WIDTH = 300;// 二维码高度private static final int DEFAULT_QR_CODE_HEIGHT = 300;/*** 创建BitMatrix比特矩阵* @Date 2023/09/24 22:29* @Param contents 二维码里的内容* @Param width 二维码宽度* @param height 二维码高度* @return com.google.zxing.common.BitMatrix*/public static  BitMatrix createBitMatrix(String contents , int width , int height) throws WriterException, IOException {if (ObjectUtil.isNull(width)) {width = DEFAULT_QR_CODE_WIDTH;}if (ObjectUtil.isNull(height)) {height = DEFAULT_QR_CODE_HEIGHT;}Hashtable<EncodeHintType, Object> hints = new Hashtable<EncodeHintType, Object>();hints.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.H); // 纠错等级L,M,Q,Hhints.put(EncodeHintType.CHARACTER_SET, DEFAULT_CHAR_SET);// 编码utf-8hints.put(EncodeHintType.MARGIN, 1);  // 边距// 创建比特矩阵BitMatrix bitMatrix = new MultiFormatWriter().encode(contents,BarcodeFormat.QR_CODE, width, height, hints);return bitMatrix;}/*** 创建二维码,返回字节数组* @Date 2023/09/24 22:30* @Param contents 二维码里的内容* @Param imageFormat 图片后缀名* @Param width 二维码宽度* @param height 二维码高度* @return byte[]*/public static byte[] createQrCode(String contents , String imageFormat , int width , int height) throws WriterException, IOException {if (StrUtil.isBlank(imageFormat)){imageFormat = DEFAULT_FORMAT_NAME;}BitMatrix bitMatrix = createBitMatrix(contents , width, height);ByteArrayOutputStream os = new ByteArrayOutputStream();MatrixToImageWriter.writeToStream(bitMatrix, imageFormat, os);return os.toByteArray();}/*** 创建二维码,返回base64字符串* @Date 2023/09/24 22:30* @Param contents 二维码里的内容* @Param imageFormat 图片后缀名* @Param width 二维码宽度* @param height 二维码高度* @return byte[]*/public static String createQrCodeBase64(String contents , String imageFormat , int width , int height) throws WriterException, IOException {byte[] bytes =createQrCode(contents , imageFormat , width, height);return Base64.encode(bytes);}/*** 解码二维码* @Date 2023/09/24 22:32* @Param [image]* @return java.lang.String*/public static String decodeQrCode(BufferedImage image) throws Exception {if (image == null) return StrUtil.EMPTY;BufferedImageLuminanceSource source = new BufferedImageLuminanceSource(image);BinaryBitmap bitmap = new BinaryBitmap(new HybridBinarizer(source));Hashtable<DecodeHintType, Object> hints = new Hashtable<DecodeHintType, Object>();hints.put(DecodeHintType.CHARACTER_SET, DEFAULT_CHAR_SET);Result result = new MultiFormatReader().decode(bitmap, hints);return result.getText();}/*** 转换为BufferedImage* @Date 2023/09/24 22:32* @Param [bitMatrix]* @return java.awt.image.BufferedImage*/public static BufferedImage toBufferedImage(BitMatrix bitMatrix) throws IOException, WriterException {MatrixToImageConfig matrixToImageConfig = new MatrixToImageConfig(0xFF000001, 0xFFFFFFFF);BufferedImage bufferedImage = MatrixToImageWriter.toBufferedImage(bitMatrix, matrixToImageConfig);return bufferedImage;}/*** 给二维码添加logo* @Date 2023/09/24 22:33* @Param [bufferedImage, logoFile]* @return java.awt.image.BufferedImage*/public static BufferedImage addQrCodeLogo(BufferedImage bufferedImage, File logoFile) throws IOException {Graphics2D graphics = bufferedImage.createGraphics();int matrixWidth = bufferedImage.getWidth();int matrixHeigh = bufferedImage.getHeight();// 读取logo图片文件BufferedImage logo = ImageIO.read(logoFile);int logoWidth = logo.getWidth();int logoHeight = logo.getHeight();//  计算logo放置位置int x = bufferedImage.getWidth()  / 5*2;int y = bufferedImage.getHeight() / 5*2;int width = matrixWidth / 5;int height = matrixHeigh / 5;// 开始绘制图片graphics.drawImage(logo, x, y, width, height, null);graphics.drawRoundRect(x, y, logoWidth, logoHeight, 15, 15);graphics.setStroke(new BasicStroke(5.0F, 1, 1));graphics.setColor(Color.white);graphics.drawRect(x, y, logoWidth, logoHeight);graphics.dispose();bufferedImage.flush();return bufferedImage;}public static void main(String[] args) throws Exception {BufferedImage bufferedImage = toBufferedImage(createBitMatrix("https://blog.csdn.net", 300, 300));ImageIO.write(bufferedImage, "png", new File("D:/qrcode.jpg"));System.out.println(decodeQrCode(bufferedImage));BufferedImage logoQrCode = addQrCodeLogo(bufferedImage, new File("D://logo.png"));ImageIO.write(logoQrCode, "png", new File("D:/logoQrcode.jpg"));}}

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

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

相关文章

thinkphp6 入门(8)-- Session

开启Session Session功能默认是没有开启的&#xff08;API应用通常不需要使用Session&#xff09; think\middleware\SessionInit// 添加引用 use think\facade\Session; 赋值 Session::set(name, thinkphp);取值 // 如果值不存在&#xff0c;返回null Session::get(name)…

机器学习-有监督学习-神经网络

目录 线性模型分类与回归感知机模型激活函数维度诅咒过拟合和欠拟合正则数据增强数值稳定性神经网络大家族CNNRNNGNN&#xff08;图神经网络&#xff09;GAN 线性模型 向量版本 y ⟨ w , x ⟩ b y \langle w, x \rangle b y⟨w,x⟩b 分类与回归 懂得两者区别激活函数&a…

Service Weaver:以单体形式编码,以微服务形式部署

分布式应用的主流架构模式演化为微服务架构已经有些年头了。微服务、DevOps、持续交付和容器技术(k8s)是构成最初云原生概念[1]的核心要素。它们相生相拌&#xff0c;共同演进&#xff0c;并推动了云计算全面进入云原生时代。 云原生应用普遍采用微服务架构&#xff0c;遗留的单…

C# Onnx Yolov8 Detect 涉黄检测

效果 项目 检测类别 代码 using Microsoft.ML.OnnxRuntime; using Microsoft.ML.OnnxRuntime.Tensors; using OpenCvSharp; using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; usi…

【Linux】从零开始学习Linux基本指令(一)

&#x1f6a9;纸上得来终觉浅&#xff0c; 绝知此事要躬行。 &#x1f31f;主页&#xff1a;June-Frost &#x1f680;专栏&#xff1a;Linux入门 &#x1f525;该文章主要了解Linux操作系统下的基本指令。 目录&#xff1a; ⌛️指令的理解⏳目录和文件的理解⏳一些常见指令✉…

“小程序:改变电商行业的新趋势“

目录 引言1. 小程序的简介1.1 什么是小程序&#xff1f;1.2 小程序的优势 2. 小程序之电商演示1.注册微信小程序2.安装开发工具3.创建项目 3. 小程序之入门案例总结 引言 随着移动互联网的迅猛发展&#xff0c;小程序作为一种全新的应用形态&#xff0c;正在逐渐改变着传统电商…

鲲山科技:引入和鲸 ModelWhale,实现量化策略的高效迭代

量化投资是数据科学在金融行业的应用。 2023 年&#xff0c;量化行业的超额收益开始收敛&#xff0c;量化私募如何形成自身核心竞争力&#xff1f; 和鲸拜访客户鲲山科技&#xff08;深圳&#xff09;&#xff0c;揭示其“弯道超车”的独家秘诀。 群体作战 年初至今&#xff…

【软考-中级】系统集成项目管理工程师-配置管理历年案例

持续更新。。。。。。。。。。。。。。。 目录 2023 上 试题三(20分) 2023 上 试题三(20分) 某公司有自己的质量管理体系&#xff0c;其中配置管理程序已运行多年&#xff0c;由项目经理牵头组建变更控制委员会(CCB)&#xff0c;在创建配置管理环境后&#xff0c;并经过变更申请…

NewStarCTF 2023 公开赛道 WEEK2|Crypto

目录 T1.滴啤 T2.不止一个pi T3.halfcandecode T4.Rotate Xor T5.broadcast T6.partial decrypt T1.滴啤 下载题目附件&#xff0c;我们获得到以下代码。 from Crypto.Util.number import * import gmpy2 from flag import flag def gen_prime(number):p getPrime(numb…

跨行或跨列布局

关键点 1、float 实现 2、flex 实现 3、grid 实现效果预览: html: <div class="container"><h2>float 实现</h2>

10.12按键中断

设置按键中断&#xff0c;按键1按下&#xff0c;LED亮&#xff0c;再按一次&#xff0c;灭 按键2按下&#xff0c;蜂鸣器响。再按一次&#xff0c;不响 按键3按下&#xff0c;风扇转&#xff0c;再按一次&#xff0c;风扇停 keyit.h: #ifndef __KEYIT_H__ #define __KEYIT_…

Go语言介绍与安装

介绍与安装 本教程介绍了 Go&#xff0c;并讨论了选择 Go 相对于其他编程语言的优势。我们还将学习如何在Windows 中安装 Go。 介绍 Go也称为Golang&#xff0c;是由 Google 开发的一种开源、编译型、静态类型的编程语言。 Go创造背后的关键人物是Rob Pike、 Ken Thompson和…

Blender:渲染一个简单动画

接上 Blender&#xff1a;对模型着色_六月的翅膀的博客-CSDN博客 目标是做一个这种视频 先添加一个曲线&#xff0c;作为相机轨迹 然后添加一个相机 对相机添加物体约束&#xff0c;跟随路径&#xff0c;选择曲线&#xff0c;然后点击动画路径 假如对相机设置跟随路径后&…

Linux高性能服务器编程 学习笔记 第十三章 多进程编程

我们将讨论Linux多进程编程的以下内容&#xff1a; 1.复制进程映像的fork系统调用和替换进程映像的exec系列系统调用。 2.僵尸进程以及如何避免僵尸进程。 3.进程间通信&#xff08;Inter Process Communication&#xff0c;IPC&#xff09;最简单的方式&#xff1a;管道。 …

SSM - Springboot - MyBatis-Plus 全栈体系(二十六)

第六章 SpringBoot 快速启动框架&#xff1a;SpringBoot3 实战 一、SpringBoot3 介绍 1. SpringBoot3 简介 SpringBoot 版本&#xff1a;3.0.5 到目前为止已经学习了多种配置 Spring 程序的方式。但是无论使用 XML、注解、Java 配置类还是他们的混合用法&#xff0c;都会觉…

String、StringBuilder、StringBuffer区别

String、StringBuilder、StringBuffer区别 面试官&#xff1a;请你谈谈String、StringBuilder、StringBuffer区别 作为经典Java八股&#xff0c;是面试必考的热门点。 下面让我们一起来看一下他们的区别吧&#xff01; 主要是测试他们的效率和应用场景&#xff0c;具体语法不在…

[资源推荐] 复旦大学张奇老师科研分享

刷B站的时候首页给我推了这个&#xff1a;【直播回放】复旦大学张奇教授亲授&#xff1a;人工智能领域顶会论文的发表指南先前也散漫地读了些许论文&#xff0c;但没有在一些宏观的方法论下去训练&#xff0c;读的时候能感觉出一些科研的套路&#xff0c;论文写作的套路&#x…

C++算法:图中的最短环

题目 现有一个含 n 个顶点的 双向 图&#xff0c;每个顶点按从 0 到 n - 1 标记。图中的边由二维整数数组 edges 表示&#xff0c;其中 edges[i] [ui, vi] 表示顶点 ui 和 vi 之间存在一条边。每对顶点最多通过一条边连接&#xff0c;并且不存在与自身相连的顶点。 返回图中 …

Kafka保证消息幂等以及解决方案

1、幂等的基本概念 幂等简单点讲&#xff0c;就是用户对于同一操作发起的一次请求或者多次请求的结果是一致的&#xff0c;不会产生任何副作用。幂等分很多种&#xff0c;比如接口的幂等、消息的幂等&#xff0c;它是分布式系统设计时必须要考虑的一个方面。 查询操作(天然幂等…

【VR开发】【Unity】0-课程简介和概述

【说明】 这是我录制的一套VR基础开发课程的文字版本&#xff0c;更加便于快速参考。 应大家在后台所提的需求&#xff0c;从今天开始&#xff0c;我计划带给大家一套完整达40课时的VR开发基础课程。 在开始学习前需要注意如下几点&#xff1a; 本教程基于Unity2022.2.1f1版…