zxing 生成图片 带logo 正方形 圆形 兼容

news/2024/11/18 3:22:13/

ZxingImageUtils 工具类


import com.google.zxing.common.BitMatrix;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;
import java.io.OutputStream;/*** @author wujie* @date 2023/3/10 10:59*/
public class ZxingImageUtils {private static final int BLACK = 0xFF000000;//用于设置图案的颜色private static final int WHITE = 0xFFFFFFFF; //用于背景色private ZxingImageUtils() {}public static BufferedImage toBufferedImage(BitMatrix matrix) {int width = matrix.getWidth();int height = matrix.getHeight();BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);for (int x = 0; x < width; x++) {for (int y = 0; y < height; y++) {image.setRGB(x, y,  (matrix.get(x, y) ? WHITE : BLACK));}}return image;}/*** 传入的图像必须是正方形的 才会 圆形 如果是长方形的比例则会变成椭圆的* @return* @throws IOException*/public static BufferedImage convertCircular(BufferedImage bi1)  {// 透明底的图片BufferedImage bi2 = new BufferedImage(bi1.getWidth(), bi1.getHeight(), BufferedImage.TYPE_INT_RGB);Ellipse2D.Double shape = new Ellipse2D.Double(0, 0, bi1.getWidth(), bi1.getHeight());Graphics2D g2 = bi2.createGraphics();g2.fillRect(0,0,bi1.getWidth(),bi1.getHeight());g2.setClip(shape);// 使用 setRenderingHint 设置抗锯齿g2.drawImage(bi1, 0, 0, null);g2.dispose();return bi2;}public static void writeToFile(BitMatrix matrix, String format, File file,String avatar) throws IOException {BufferedImage image = toBufferedImage(matrix);// 这里需要圆形就用 convertCircular 正方形矩阵的就用toBufferedImageBufferedImage bufferedImage = convertCircular(image);//设置logo图标LogoConfig logoConfig = new LogoConfig();bufferedImage = logoConfig.LogoMatrix(bufferedImage,avatar);if (!ImageIO.write(bufferedImage, format, file)) {throw new IOException("Could not write an image of format " + format + " to " + file);}else{System.out.println("图片生成成功!");}}public static void writeToStream(BitMatrix matrix, String format, OutputStream stream,String avatar) throws IOException {BufferedImage image = toBufferedImage(matrix);//设置logo图标LogoConfig logoConfig = new LogoConfig();image = logoConfig.LogoMatrix(image,avatar);if (!ImageIO.write(image, format, stream)) {throw new IOException("Could not write an image of format " + format);}}}

带logo


import javax.imageio.ImageIO;
import java.awt.*;
import java.awt.geom.Ellipse2D;
import java.awt.image.BufferedImage;
import java.io.IOException;
import java.net.URL;/*** @author wujie* @date 2023/3/10 11:01*/
public class LogoConfig {/*** 设置 logo* @param matrixImage 源二维码图片* @return 返回带有logo的二维码图片* @throws IOException* @author Administrator sangwenhao*/public BufferedImage LogoMatrix(BufferedImage matrixImage,String avatar) throws IOException {/*** 读取二维码图片,并构建绘图对象*/Graphics2D g2 = matrixImage.createGraphics();int matrixWidth = matrixImage.getWidth();int matrixHeight = matrixImage.getHeight();/*** 读取Logo图片*/URL url = new URL(avatar);BufferedImage logo = ImageIO.read(url);//开始绘制图片g2.drawImage(logo,matrixWidth/5*2,matrixHeight/5*2, matrixWidth/5, matrixHeight/5, null);//绘制BasicStroke stroke = new BasicStroke(5,BasicStroke.CAP_ROUND,BasicStroke.JOIN_ROUND);g2.setStroke(stroke);// 设置笔画对象//指定弧度的圆角矩形Ellipse2D.Float round = new Ellipse2D.Float(matrixWidth/5*2, matrixHeight/5*2, matrixWidth/5, matrixHeight/5);g2.setColor(Color.white);g2.draw(round);// 绘制圆弧矩形g2.dispose();matrixImage.flush() ;return matrixImage ;}}

test


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 com.zhengbai.atlas.common.util.IdUtils;import java.io.File;
import java.io.IOException;
import java.util.Hashtable;/*** @author wujie* @date 2023/3/10 11:00*/
public class EncodeTest {public static void generateImage(String contents,String avatar) throws IOException, WriterException {// contents 二维码内容int width = 430; // 二维码图片宽度 300int height = 430; // 二维码图片高度300String format = "jpg";// 二维码的图片格式 jpgHashtable<EncodeHintType, Object> hints = new Hashtable<EncodeHintType, Object>();// 指定纠错等级,纠错级别(L 7%、M 15%、Q 25%、H 30%)hints.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.H);// 内容所使用字符集编码hints.put(EncodeHintType.CHARACTER_SET, "utf-8");
//		hints.put(EncodeHintType.MAX_SIZE, 350);//设置图片的最大值
//	    hints.put(EncodeHintType.MIN_SIZE, 100);//设置图片的最小值hints.put(EncodeHintType.MARGIN, 1);//设置二维码边的空度,非负数BitMatrix bitMatrix = new MultiFormatWriter().encode(contents,//要编码的内容//编码类型,目前zxing支持:Aztec 2D,CODABAR 1D format,Code 39 1D,Code 93 1D ,Code 128 1D,//Data Matrix 2D , EAN-8 1D,EAN-13 1D,ITF (Interleaved Two of Five) 1D,//MaxiCode 2D barcode,PDF417,QR Code 2D,RSS 14,RSS EXPANDED,UPC-A 1D,UPC-E 1D,UPC/EAN extension,UPC_EAN_EXTENSIONBarcodeFormat.QR_CODE,width, //条形码的宽度height, //条形码的高度hints);//生成条形码时的一些配置,此项可选// 生成二维码File outputFile = new File("E:\\images" + File.separator + IdUtils.uuid()+".jpg");//指定输出路径ZxingImageUtils.writeToFile(bitMatrix, format, outputFile,avatar);}//    public static void main(String[] args) throws Exception {
//        try {
//            generateImage("我是图片20981209384","https://img-blog.csdnimg.cn/ac222b87a8714bf2ae64a3386b235393.png");
//        } catch (Exception e) {
//            // TODO: handle exception
//            e.printStackTrace();
//        }
//    }}

http://www.ppmy.cn/news/31490.html

相关文章

[深入理解SSD系列综述 闪存实战2.1.2] SLC、MLC、TLC、QLC、PLC NAND_固态硬盘闪存颗粒类型

闪存最小物理单位是 Cell, 一个Cell 是一个晶体管。 闪存是通过晶体管储存电子来表示信息的。在晶体管上加入了浮动栅贮存电子。数据是0或1取决于在硅底板上形成的浮动栅中是否有电子。有电子为0,无电子为1. SSD 根据闪存颗粒区分,固态硬盘有SLC、MLC、TLC、QLC、PLC 五种类型…

微小目标识别研究(2)——基于K近邻的白酒杂质检测算法实现

文章目录实现思路配置opencv位置剪裁实现代码自适应中值滤波实现代码动态范围增强实现代码形态学处理实现代码图片预处理效果计算帧差连续帧帧差法原理和实现代码实现代码K近邻实现基本介绍实现代码这部分是手动实现的&#xff0c;并没有直接调用相关的库完整的代码——调用ope…

Oracle OCP 19c 考试(1Z0-083)中关于Oracle不完全恢复的考点(文末附录像)

欢迎试看博主的专著《MySQL 8.0运维与优化》 下面是Oracle 19c OCP考试&#xff08;1Z0-083&#xff09;中关于Oracle不完全恢复的题目: A database is configured in ARCHIVELOG mode A full RMAN backup exists but no control file backup to trace has been taken A media…

虚拟化介绍

1、为什么需要虚拟化 据调查传统的服务器在很多时候处于休眠状态&#xff0c;大概只有5%时间是在工作&#xff0c;工作效率低下&#xff0c;浪费资源&#xff0c;因此需要一种手段来提高计算机资源的利用率。 虚拟化前 每台主机一个操作系统 在同一台主机运行多个应用程序&am…

Shell脚本编码字符串截取,从指定位置开始截取和从指定字符(子字符串)开始截取

从指定位置开始截取这种方式需要两个参数&#xff1a;除了指定起始位置&#xff0c;还需要截取长度&#xff0c;才能最终确定要截取的字符串。既然需要指定起始位置&#xff0c;那么就涉及到计数方向的问题&#xff0c;到底是从字符串左边开始计数&#xff0c;还是从字符串右边…

【JavaScript运行原理之V8引擎】V8引擎解析JavaScript代码原理

1. 编程语言的执行 高级语言最终都需要编译为低级语言才能被硬件执行&#xff0c;越高级的语言中间的转换时间越长&#xff0c;效率越低&#xff0c;越低级的语言执行素的越快&#xff0c;但是由于缺少高级语言便捷的语法特性所以很难编写代码。 2. 大杂烩JS 它是作者在1995…

数据库索引原理

数据库索引的作用是做数据的快速检索&#xff0c;而快速检索实现的本质是数据结构。像二叉树、红黑树、AVL树、B树、B树、哈希等数据结构都可以实现索引&#xff0c;但其中B树效率最高。MySQL数据库索引使用的是B树。二叉树&#xff1a;二叉树中&#xff0c;左子树比根节点小&a…

优化模型验证关键代码25:样本均值近似技术处理两阶段随机旅行商问题及Gurobipy代码验证

大多数数学规划模型都会考虑到研究问题中存在的不确定性,针对这些不确定性,两种常用的处理方法是鲁棒优化和随机规划。这篇论文我们关注后者,也就是两阶段随机旅行商问题;利用套期保值算法计算不同规模TSP的可行解,同时比较了样本均值近似技术的解的情况,并计算了该问题的…