生成QR二维码的jar包常见的有日本的QRCode.jar和google的zxing.jar,两种方式我都试过,觉得还是google的更胜一筹。
生成二维码个人认为麻烦的地方是中间带logo,因为logo的大小与整体二维码的比例需要在一定范围内,不然不会被识别。二维码允许存在logo是利用了二维码的容错功能。QR二维码容错级别分为四个层次:L,M,Q,H(从低到高排序)。
代码如下:
package com.util;
import java.awt.BasicStroke;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.Image;
import java.awt.Shape;
import java.awt.geom.RoundRectangle2D;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import java.io.OutputStream;
import java.util.HashMap;
import java.util.Hashtable;
import javax.imageio.ImageIO;
import com.google.zxing.BarcodeFormat;
import com.google.zxing.BinaryBitmap;
import com.google.zxing.EncodeHintType;
import com.google.zxing.LuminanceSource;
import com.google.zxing.MultiFormatReader;
import com.google.zxing.MultiFormatWriter;
import com.google.zxing.Result;
import com.google.zxing.client.j2se.BufferedImageLuminanceSource;
import com.google.zxing.common.BitMatrix;
import com.google.zxing.common.HybridBinarizer;
import com.google.zxing.qrcode.decoder.ErrorCorrectionLevel;
public class QRCodeHelper {
private static final int BLACK = 0xFF000000;
private static final int WHITE = 0xFFFFFFFF;
private static HashMap<Integer,ErrorCorrectionLevel> levelMap=new HashMap<Integer,ErrorCorrectionLevel>(){
{
put(1,ErrorCorrectionLevel.L);
put(2,ErrorCorrectionLevel.M);
put(3,ErrorCorrectionLevel.Q);
put(4,ErrorCorrectionLevel.H);
}
};
public QRCodeHelper(){}
private static BufferedImage toBufferedImage(BitMatrix matrix,String logoPath) {
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) ? BLACK : WHITE);
}
}
try {
if(logoPath!=null&&(logoPath.length()>0)){
insertImage(image, logoPath, true);
}
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return image;
}
private static void writeToFile(BitMatrix matrix, String format, File file,String logoPath)
throws IOException {
BufferedImage image = toBufferedImage(matrix,logoPath);
if (!ImageIO.write(image, format, file)) {
throw new IOException("Could not write an image of format " + format + " to " + file);
}
}
private static void writeToStream(BitMatrix matrix, String format, OutputStream stream,String logoPath)
throws IOException {
BufferedImage image = toBufferedImage(matrix,logoPath);
if (!ImageIO.write(image, format, stream)) {
throw new IOException("Could not write an image of format " + format);
}
}
/**
* 插入LOGO
*
* @param source
* 二维码图片
* @param imgPath
* LOGO图片地址
* @param needCompress
* 是否压缩
* @throws Exception
*/
private static void insertImage(BufferedImage source, String logoPath,
boolean needCompress) throws Exception {
File file = new File(logoPath);
if (!file.exists()) {
System.err.println(""+logoPath+" 该文件不存在!");
return;
}
Image src = ImageIO.read(new File(logoPath));
int width = src.getWidth(null);
int height = src.getHeight(null);
int grWidth=source.getWidth();
int grHeigth=source.getHeight();
int loginWidth=grWidth/6;
int loginHeight=grHeigth/6;
// 压缩LOGO
if (needCompress) {
if (width > loginWidth) {
width = loginWidth;
}
if (height > loginHeight) {
height = loginHeight;
}
//得到一个按照指定宽度和高度缩放以后的Image实例
Image image = src.getScaledInstance(width, height,
Image.SCALE_SMOOTH);
BufferedImage tag = new BufferedImage(width, height,
BufferedImage.TYPE_INT_RGB);
Graphics g = tag.getGraphics();
// 绘制缩小后的图
g.drawImage(image, 0, 0, null);
//释放此图形的上下文以及它使用的所有系统资源
g.dispose();
src = image;
}
// 插入LOGO
Graphics2D graph = source.createGraphics();
int x = (grWidth - width) / 2;
int y = (grHeigth - height) / 2;
graph.drawImage(src, x, y, width, height, null);
Shape shape = new RoundRectangle2D.Float(x, y, width, width, 6, 6);
//设置轮廓
graph.setStroke(new BasicStroke(3f));
graph.draw(shape);
graph.dispose();
}
/**
* 生产二维码主方法
* @param content 二维码的内容
* @param width 宽度
* @param height 高度
* @param qrPath 生产的二维码图片路径
* @param logoPath 要添加的logo图片,不需要的话为null
* @param level 校验级别 1-4
* @throws Exception
*/
public void createQRCode(String content,int width,int height,String qrPath,String logoPath,int level) throws Exception{
int index=qrPath.lastIndexOf(".");
//二维码的图片格式
String format = qrPath.substring(index+1);
Hashtable hints = new Hashtable();
//内容所使用编码
//设置二维码排错率,可选L(7%)、M(15%)、Q(25%)、H(30%),排错率越高可存储的信息越少,但对二维码清晰度的要求越小
hints.put(EncodeHintType.ERROR_CORRECTION, levelMap.get(Integer.valueOf(level)));
hints.put(EncodeHintType.CHARACTER_SET, "UTF-8");
BitMatrix bitMatrix = new MultiFormatWriter().encode(
content,
BarcodeFormat.QR_CODE,
width,
height,
hints
);
//生成二维码
File outputFile = new File(qrPath);
writeToFile(bitMatrix, format, outputFile,logoPath);
}
public Result analyseQRCode(String qrPath) throws Exception{
File file = new File(qrPath);
System.out.println(file.getName());
BufferedImage bufferedImage = null;
bufferedImage = ImageIO.read(file);
LuminanceSource source = new BufferedImageLuminanceSource(bufferedImage);
BinaryBitmap bitmap = new BinaryBitmap(new HybridBinarizer(source));
Hashtable hints = new Hashtable();
//hints.put(EncodeHintType.ERROR_CORRECTION, levelMap.get(Integer.valueOf(level)));
hints.put(EncodeHintType.CHARACTER_SET, "UTF-8");
Result result = null;
result = new MultiFormatReader().decode(bitmap, hints);
return result;
}
}
分享到:
相关推荐
java生成二维码工具类,包括生成二维码,生成带logo二维码,图片嵌套图片,二维码嵌套到大图中等等功能。
`QQ截图20210615105054.png`很可能是一个示例的logo图片,或者是一个生成的带有logo的二维码的示例结果。用户可能需要将这个logo图片的路径传递给`qrcode.php`,然后脚本会将logo插入到生成的二维码中心或指定位置,...
以上就是使用Java生成带Logo二维码以及解密二维码的基本操作。在实际应用中,我们还需要考虑错误处理、二维码格式转换、容错级别调整等因素,以满足不同场景的需求。在进行这些操作时,确保遵循最佳实践,比如合理...
直接生成带LOGO二维码,不用先生成二维码,再将LOGO画上去
本项目聚焦于“java zing识别、生成带logo二维码”,这涉及到Java二维码库的使用,特别是如何在二维码中嵌入自定义logo,提升二维码的视觉效果和品牌辨识度。 首先,`QRCodeUtil.java`文件很可能是实现二维码生成的...
经过测试,通过QRcode.jar里的生成二维码方法生成带LOGO二维码,代码中会将LOGO调整为固定大小。
资源名:VB.NET实现生成带logo二维码功能程序源码 资源类型:程序源代码 源码说明: 基于vb.net写的生成带logo二维码功能程序源码 包含完整代码和注释 很适合借鉴学习 适合人群:新手及有一定经验的开发人员
本压缩包"unigui_生成带logo二维码.rar"显然与使用Unigui在Delphi环境下生成带有Logo的二维码相关。下面将详细讲解如何在Delphi中利用Unigui实现这一功能,以及可能涉及到的相关技术。 1. **Unigui框架**:Unigui是...
在iOS开发中,生成带有logo的二维码以及读取二维码中的信息是常见的功能需求。这个压缩包文件"ios-一个方法生成带logo的二维码和一个方法读取二维码中的信息..zip"提供了解决这一问题的解决方案,主要包含了一个名为...
这个“android带Logo二维码生成源码”项目提供了一种解决方案,允许用户从手机图库选择图片作为Logo,并自定义输入信息,生成个性化二维码,最后将其保存到手机图库中。 首先,我们要理解二维码的生成原理。二维码...
本教程将详细讲解如何使用`QRCode.jar`库在Java中生成带有Logo的二维码,以及所需的基本步骤和关键知识点。 首先,我们需要了解`QRCode.jar`库。这是一个专门用于生成二维码的Java库,它提供了方便的API接口,使得...
Android使用QRCode类库生成带LOGO的二维码,包括扫描、读取和识别,原工程从Github上获得,在此基础上经过优化和完善,相信对研究Android二维码相关操作会有不小的帮助。代码里包括了比较多的二维码操作的封装类库,...
在Android平台上,开发一款应用以实现“扫描二维码、扫描条形码、相册获取图片后识别、生成带Logo二维码以及支持微博微信QQ二维码扫描样式”的功能,涉及到的技术点相当广泛。下面将详细介绍这些核心知识点: 1. **...
本文将详细讲解如何使用jQuery生成带有logo的二维码,以及相关的技术要点。 首先,要生成二维码,我们需要一个二维码生成库。在JavaScript中,常用的库有`qrcode-generator`或`jquery-qrcode`。这里我们主要关注与...
Java作为广泛应用的编程语言,提供了一些库来帮助我们实现这个功能,包括生成带Logo的二维码。本篇文章将深入探讨如何在Java中实现这个功能,并解决可能遇到的中文乱码问题。 首先,我们需要一个可靠的二维码生成库...
php 生成带logo的二维码。 需要类库phpqrcode.php及php运行环境。自己写的代码。谢谢支持
【标题】"delphi二维码logo.rar" 是一个与Delphi编程相关的压缩文件,它提供了在Delphi 7环境下创建带有自定义logo的二维码的源代码示例。通过这个压缩包,开发者可以学习如何在二维码中集成logo图像,调整logo的...
在本文中,我们将深入探讨如何在Spring Boot项目中利用ZXing库生成二维码并支持自定义logo。ZXing,全称为“Zebra Crossing”,是一个开源的、多格式的1D/2D条码图像处理库,它能读取、写入多种条码格式,包括二维码...
"中间带logo图片的二维码生成"这个主题就是关于如何在生成的二维码中间插入logo图片,以实现个性化和专业化的展示。 首先,我们要了解如何使用qrCode库来生成二维码。qrCode库通常提供了API接口,允许开发者自定义...