`

转:java二维码工具类,中间带LOGO的,很强大

 
阅读更多

jar包下载maven 配置:

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

 

package com.util.cccm;

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.OutputStream;
import java.util.Hashtable;
import java.util.Random;

import javax.imageio.ImageIO;

import com.google.zxing.BarcodeFormat;
import com.google.zxing.BinaryBitmap;
import com.google.zxing.DecodeHintType;
import com.google.zxing.EncodeHintType;
import com.google.zxing.MultiFormatReader;
import com.google.zxing.MultiFormatWriter;
import com.google.zxing.Result;
import com.google.zxing.common.BitMatrix;
import com.google.zxing.common.HybridBinarizer;
import com.google.zxing.qrcode.decoder.ErrorCorrectionLevel;

/**
 * 二维码工具类
 * 
 */
public class QRCodeUtil {

	private static final String CHARSET = "utf-8";
	private static final String FORMAT_NAME = "JPG";
	// 二维码尺寸
	private static final int QRCODE_SIZE = 300;
	// LOGO宽度
	private static final int WIDTH = 60;
	// LOGO高度
	private static final int HEIGHT = 60;

	private static BufferedImage createImage(String content, String imgPath,
			boolean needCompress) throws Exception {
		Hashtable<EncodeHintType, Object> hints = new Hashtable<EncodeHintType, Object>();
		hints.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.H);
		hints.put(EncodeHintType.CHARACTER_SET, CHARSET);
		hints.put(EncodeHintType.MARGIN, 1);
		BitMatrix bitMatrix = new MultiFormatWriter().encode(content,
				BarcodeFormat.QR_CODE, QRCODE_SIZE, QRCODE_SIZE, hints);
		int width = bitMatrix.getWidth();
		int height = bitMatrix.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, bitMatrix.get(x, y) ? 0xFF000000
						: 0xFFFFFFFF);
			}
		}
		if (imgPath == null || "".equals(imgPath)) {
			return image;
		}
		// 插入图片
		QRCodeUtil.insertImage(image, imgPath, needCompress);
		return image;
	}

	/**
	 * 插入LOGO
	 * 
	 * @param source
	 *            二维码图片
	 * @param imgPath
	 *            LOGO图片地址
	 * @param needCompress
	 *            是否压缩
	 * @throws Exception
	 */
	private static void insertImage(BufferedImage source, String imgPath,
			boolean needCompress) throws Exception {
		File file = new File(imgPath);
		if (!file.exists()) {
			System.err.println(""+imgPath+"   该文件不存在!");
			return;
		}
		Image src = ImageIO.read(new File(imgPath));
		int width = src.getWidth(null);
		int height = src.getHeight(null);
		if (needCompress) { // 压缩LOGO
			if (width > WIDTH) {
				width = WIDTH;
			}
			if (height > HEIGHT) {
				height = HEIGHT;
			}
			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 = (QRCODE_SIZE - width) / 2;
		int y = (QRCODE_SIZE - 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();
	}

	/**
	 * 生成二维码(内嵌LOGO)
	 * 
	 * @param content
	 *            内容
	 * @param imgPath
	 *            LOGO地址
	 * @param destPath
	 *            存放目录
	 * @param needCompress
	 *            是否压缩LOGO
	 * @throws Exception
	 */
	public static void encode(String content, String imgPath, String destPath,
			boolean needCompress) throws Exception {
		BufferedImage image = QRCodeUtil.createImage(content, imgPath,
				needCompress);
		mkdirs(destPath);
		String file = new Random().nextInt(99999999)+".jpg";
		ImageIO.write(image, FORMAT_NAME, new File(destPath+"/"+file));
	}

	/**
	 * 当文件夹不存在时,mkdirs会自动创建多层目录,区别于mkdir.(mkdir如果父目录不存在则会抛出异常)
	 * @author lanyuan
	 * Email: mmm333zzz520@163.com
	 * @date 2013-12-11 上午10:16:36
	 * @param destPath 存放目录
	 */
	public static void mkdirs(String destPath) {
		File file =new File(destPath);    
		//当文件夹不存在时,mkdirs会自动创建多层目录,区别于mkdir.(mkdir如果父目录不存在则会抛出异常)
		if (!file.exists() && !file.isDirectory()) {
			file.mkdirs();
		}
	}

	/**
	 * 生成二维码(内嵌LOGO)
	 * 
	 * @param content
	 *            内容
	 * @param imgPath
	 *            LOGO地址
	 * @param destPath
	 *            存储地址
	 * @throws Exception
	 */
	public static void encode(String content, String imgPath, String destPath)
			throws Exception {
		QRCodeUtil.encode(content, imgPath, destPath, false);
	}

	/**
	 * 生成二维码
	 * 
	 * @param content
	 *            内容
	 * @param destPath
	 *            存储地址
	 * @param needCompress
	 *            是否压缩LOGO
	 * @throws Exception
	 */
	public static void encode(String content, String destPath,
			boolean needCompress) throws Exception {
		QRCodeUtil.encode(content, null, destPath, needCompress);
	}

	/**
	 * 生成二维码
	 * 
	 * @param content
	 *            内容
	 * @param destPath
	 *            存储地址
	 * @throws Exception
	 */
	public static void encode(String content, String destPath) throws Exception {
		QRCodeUtil.encode(content, null, destPath, false);
	}

	/**
	 * 生成二维码(内嵌LOGO)
	 * 
	 * @param content
	 *            内容
	 * @param imgPath
	 *            LOGO地址
	 * @param output
	 *            输出流
	 * @param needCompress
	 *            是否压缩LOGO
	 * @throws Exception
	 */
	public static void encode(String content, String imgPath,
			OutputStream output, boolean needCompress) throws Exception {
		BufferedImage image = QRCodeUtil.createImage(content, imgPath,
				needCompress);
		ImageIO.write(image, FORMAT_NAME, output);
	}

	/**
	 * 生成二维码
	 * 
	 * @param content
	 *            内容
	 * @param output
	 *            输出流
	 * @throws Exception
	 */
	public static void encode(String content, OutputStream output)
			throws Exception {
		QRCodeUtil.encode(content, null, output, false);
	}

	/**
	 * 解析二维码
	 * 
	 * @param file
	 *            二维码图片
	 * @return
	 * @throws Exception
	 */
	public static String decode(File file) throws Exception {
		BufferedImage image;
		image = ImageIO.read(file);
		if (image == null) {
			return null;
		}
		BufferedImageLuminanceSource source = new BufferedImageLuminanceSource(
				image);
		BinaryBitmap bitmap = new BinaryBitmap(new HybridBinarizer(source));
		Result result;
		Hashtable<DecodeHintType, Object> hints = new Hashtable<DecodeHintType, Object>();
		hints.put(DecodeHintType.CHARACTER_SET, CHARSET);
		result = new MultiFormatReader().decode(bitmap, hints);
		String resultStr = result.getText();
		return resultStr;
	}

	/**
	 * 解析二维码
	 * 
	 * @param path
	 *            二维码图片地址
	 * @return
	 * @throws Exception
	 */
	public static String decode(String path) throws Exception {
		return QRCodeUtil.decode(new File(path));
	}

	public static void main(String[] args) throws Exception {
		String text = "薯 灯可分列式本上楞珂要瓜熟蒂落!000000000000000";
		QRCodeUtil.encode(text, "c:/df.jsp", "c:/a/", true);
	}
}

 

分享到:
评论

相关推荐

    java二维码工具类,中间带LOGO的,很强大

    总的来说,这个“java二维码工具类,中间带LOGO的”是一个功能强大的解决方案,它结合了ZXing库的二维码生成能力与Java的图像处理功能,使得生成的二维码既实用又具有视觉吸引力。开发者可以通过理解和利用这些知识...

    java二维码工具类,中间可LOGO

    Java二维码工具类是一种用于生成和解析二维码的编程资源,它允许开发者在程序中集成二维码功能。二维码(Quick Response Code)是一种二维条形码,能够存储大量数据,如文本、URL、联系信息等,并且可以被智能手机或...

    java生成二维码(中间带logo)

    本篇将详细介绍如何使用Java来创建带有logo的二维码。 首先,我们需要了解二维码的基本原理。二维码(Quick Response Code)是二维条形码的一种,由日本Denso Wave公司发明,它能够在有限的空间内存储大量的数据,...

    java生成中间带logo的二维码图片(源码)

    以上就是关于使用Java生成中间带logo的二维码图片的相关知识点。实际开发中,可以根据需求进行扩展,例如添加颜色定制、二维码样式调整等功能。通过深入理解这些概念,你可以构建自己的二维码生成工具。

    java生成带logo的二维码,logo居中,完美实现

    总之,Java生成带logo的二维码涉及到二维码编码、图像处理等多个技术点,理解并熟练掌握这些知识对于提升Java开发者的综合能力具有重要意义。通过灵活运用各种工具和技巧,我们可以实现各种定制化的二维码生成需求,...

    java zing识别、生成带logo二维码

    本项目聚焦于“java zing识别、生成带logo二维码”,这涉及到Java二维码库的使用,特别是如何在二维码中嵌入自定义logo,提升二维码的视觉效果和品牌辨识度。 首先,`QRCodeUtil.java`文件很可能是实现二维码生成的...

    二维码工具类,提供多种生成二维码、解析二维码的方法,包括中间logo的二维码等方法

    根据提供的文件信息,我们可以总结出以下关于二维码工具类的关键知识点: ### 一、概述 **QrcodeUtils** 是一个用于生成和解析二维码的工具类。它提供了多种生成二维码的方法,支持在二维码中心嵌入logo,并提供了...

    Android高级应用源码-java使用qrCode生成二维码实例中间带logo.zip

    这个"Android高级应用源码-java使用qrCode生成二维码实例中间带logo.zip"压缩包提供了一个具体的实现,允许开发者在生成的二维码中间嵌入logo,增强二维码的视觉效果和品牌识别度。下面将详细介绍这个实例涉及的主要...

    andoid 二维码生成,自带中心logo

    3. **添加中心logo**:在生成的二维码中间添加logo,需要先加载logo位图,然后将其缩放至合适的大小。接着,找到logo应该放置的位置,将logo位图绘制到二维码位图上: ```java Bitmap logoBitmap = BitmapFactory....

    java工具类——二维码

    总结来说,使用Zixing在Java中生成带有logo的二维码涉及以下几个关键步骤: 1. 引入Zixing库。 2. 使用`QRCodeWriter`生成位矩阵。 3. 转换位矩阵为BufferedImage对象。 4. 插入logo图像。 5. 保存生成的二维码图像...

    android 生成中间带小图片的二维码

    在Android平台上,生成中间带有小图片的二维码是一项常见的需求,特别是在设计美观且具有品牌特色的二维码时。二维码(Quick Response Code)是一种二维条码,能够存储大量数据,如网址、文本、联系信息等,并能被...

    java Springboot 生成 二维码 +logo.docx

    根据提供的文档信息,以下是对如何使用Java Spring Boot生成带有Logo的二维码的相关知识点的详细解析。 ### 1. 引入依赖库 为了实现二维码的生成功能,首先需要引入相关的依赖库。这里主要用到了`ZXing`库来进行...

    zxing生成、解析二维码

    总之,ZXing是一个强大的工具,无论是生成带有Logo的个性化二维码,还是创建方便交换的二维码名片,都能轻松应对。开发者可以根据实际需求,灵活运用ZXing提供的API,实现各种功能丰富的二维码应用。

    zxing二维码

    ZXing(Zebra Crossing)是一...综上所述,ZXing库是Java开发中生成和解析二维码的强大工具,其丰富的功能和易用性使得在各种场景下都能灵活应用。通过深入理解和实践,开发者可以利用ZXing轻松实现二维码相关的功能。

    C#生成带Log的二维码图片.pdf

    7. 输出最终的二维码图片:通过创建Graphics对象并使用FillRectangle和DrawImage方法在最终的Bitmap对象上绘制二维码和Logo图片,以生成一个完整的带Logo的二维码图片。 在这个过程中,我们用到了多种.NET框架中的...

    Java生成中间logo的二维码的示例代码

    总结来说,Java生成中间带有logo的二维码主要涉及到ZXing库的使用,以及对图像处理的理解,包括位图操作、图形绘制和颜色处理。通过理解这段代码,开发者可以灵活地定制自己的二维码生成器,满足各种应用场景的需求...

    生成二维码源码

    4. **添加logo**:在二维码中间添加logo,需要先将logo图像转换为黑白二值图,然后定位到二维码的适当位置,覆盖部分二维码像素。这个过程可能涉及图像处理库,如Java的`javax.imageio`或第三方库如Apache Commons ...

    google.zxing自定义生成微信二维码.rar

    `LogoConfig.java`文件可能是一个配置类,用于设置二维码中包含的自定义元素,比如公司的logo或者个人头像。这类配置通常包括图片路径、大小、位置等信息,以便在生成的二维码中精确地放置这些元素,增加视觉效果的...

    QrCode_java.zip

    【QrCode_java.zip】是一个基于Java开发的二维码生成工具,专为生成带有参数和内嵌自定义图片的二维码而设计。这个工具包名为QRCodeUtil,提供了完整的功能,允许开发者轻松地在Java环境中创建个性化的二维码。下面...

    zxing和qrcode二维码实现

    - 在生成的二维码中间添加Logo,可以增强二维码的辨识度和美观性。这通常通过先生成二维码图像,再使用图像处理技术将Logo合并到二维码中心实现。ZXing本身并不直接支持此功能,但你可以使用Java的`BufferedImage`...

Global site tag (gtag.js) - Google Analytics