Java实现生成二维码及二维码解析

1、导入所需的工具类jar包

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

2、业务代码实现

/**
 * 	生成二维码图片
 *
 */
public class QRCodeUtils {

	/**
	 * 	为二维码图片增加LOGO头像
	 * 
	 * @see 其原理类似于图片加水印
	 * @param imagePath
	 *            	二维码图片存放路径(含文件名)
	 * @param logoPath
	 * 				LOGO头像存放路径(含文件名)
	 */
	public static void overlapImage(String imagePath, String logoPath) throws IOException {
		BufferedImage image = ImageIO.read(new File(imagePath));
		// 设置logo图片宽度为二维码图片的五分之一
		int logoWidth = image.getWidth() / 5; 
		// 设置logo图片高度为二维码图片的五分之一
		int logoHeight = image.getHeight() / 5; 
		// 设置logo图片的位置,这里令其居中
		int logoX = (image.getWidth() - logoWidth) / 2;
		// 设置logo图片的位置,这里令其居中
		int logoY = (image.getHeight() - logoHeight) / 2;
		Graphics2D graphics = image.createGraphics();
		graphics.drawImage(ImageIO.read(new File(logoPath)), logoX, logoY, logoWidth, logoHeight, null);
		graphics.dispose();
		ImageIO.write(image, imagePath.substring(imagePath.lastIndexOf(".") + 1), new File(imagePath));
	}

	/**
	 * 生成二维码
	 * 
	 * @param content
	 *            二维码内容
	 * @param charset
	 *            编码二维码内容时采用的字符集(传null时默认采用UTF-8编码)
	 * @param imagePath
	 *            二维码图片存放路径(绝对路径,含文件名)
	 * @param width
	 *            生成的二维码图片宽度
	 * @param height
	 *            生成的二维码图片高度
	 * @param logoPath
	 *            LOGO存放路径(含文件名,若不加LOGO则传null/空字符串即可)
	 * @return 生成二维码结果(true or false)
	 */
	public static boolean encodeQRCodeImage(String content, String charset, String imagePath, int width, int height,
			String logoPath) {
		Map<EncodeHintType, Object> hints = new HashMap<EncodeHintType, Object>();
		// 指定编码格式
		// hints.put(EncodeHintType.CHARACTER_SET, "UTF-8");
		// 指定纠错级别(L--7%,M--15%,Q--25%,H--30%)
		hints.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.H);
		// 设置外边距
		hints.put(EncodeHintType.MARGIN, 1);
		// 编码内容,编码类型(这里指定为二维码),生成图片宽度,生成图片高度,设置参数
		BitMatrix bitMatrix = null;
		try {
			bitMatrix = new MultiFormatWriter().encode(
					new String(content.getBytes(charset == null ? "UTF-8" : charset), "ISO-8859-1"),
					BarcodeFormat.QR_CODE, width, height, hints);
		} catch (Exception e) {
			System.out.println("编码待生成二维码图片的文本时发生异常,堆栈轨迹如下");
			e.printStackTrace();
			return false;
		}
		// 生成的二维码图片默认背景为白色,前景为黑色,但是在加入logo图像后会导致logo也变为黑白色,至于是什么原因还没有仔细去读它的源码
		// 所以这里对其第一个参数黑色将ZXing默认的前景色0xFF000000稍微改了一下0xFF000001,最终效果也是白色背景黑色前景的二维码,且logo颜色保持原有不变
		// MatrixToImageConfig config = new MatrixToImageConfig(0xFF000001,
		// 0xFFFFFFFF);
		int onColor = 0xFF000001;
		MatrixToImageConfig config = new MatrixToImageConfig(onColor, 0xFFFFFFFF);
		File imgFile = new File(imagePath);
		if (!imgFile.getParentFile().exists()) {
			imgFile.getParentFile().mkdirs();
		}
		// 图片格式
		String format = imagePath.substring(imagePath.lastIndexOf(".") + 1);
		File file = new File(imagePath);
		// 这里要显式指定MatrixToImageConfig,否则还会按照默认处理将logo图像也变为黑白色(如果打算加logo的话,反之则不须传MatrixToImageConfig参数)
		try {
//			MatrixToImageWriter.writeToFile(bitMatrix, format, new File(imagePath), config); // writeToFile方法过时
			MatrixToImageWriter.writeToPath(bitMatrix, format, file.toPath(), config);
		} catch (IOException e) {
			System.out.println("生成二维码图片[" + imagePath + "]时遇到异常,堆栈轨迹如下");
			e.printStackTrace();
			return false;
		}
		// 此时二维码图片已经生成了,只不过没有logo头像,所以接下来根据传入的logoPath参数来决定是否加logo头像
		if (StringUtils.isBlank(logoPath)) {
			return true;
		} else {
			// 如果此时最终生成的二维码不是我们想要的,那么可以扩展MatrixToImageConfig类(反正ZXing提供了源码)
			// 扩展时可以重写其writeToFile方法,令其返回toBufferedImage()方法所生成的BufferedImage对象(尽管这种做法未必能解决为题,故需根据实际情景测试)
			// 然后替换这里overlapImage()里面的第一行BufferedImage image = ImageIO.read(new
			// File(imagePath));
			// 即private static void overlapImage(BufferedImage image, String imagePath, String logoPath)
			try {
				// 这里不需要判断logoPath是否指向了一个具体的文件,因为这种情景下overlapImage会抛IO异常
				overlapImage(imagePath, logoPath);
				return true;
			} catch (IOException e) {
				System.out.println("为二维码图片[" + imagePath + "]添加logo头像[" + logoPath + "]时遇到异常,堆栈轨迹如下");
				e.printStackTrace();
				return false;
			}
		}
	}

	/**
	 * 	解析二维码
	 * 
	 * @param imagePath
	 *           	 二维码图片存放路径(含文件名)
	 * @param charset
	 *            	解码二维码内容时采用的字符集(传null时默认采用UTF-8编码)
	 * @return 解析成功后返回二维码文本,否则返回空字符串
	 */
	public static String decodeQRCodeImage(String imagePath, String charset) {
		BufferedImage image = null;
		try {
			image = ImageIO.read(new File(imagePath));
		} catch (IOException e) {
			e.printStackTrace();
			return "";
		}
		if (null == image) {
			System.out.println("Could not decode QRCodeImage");
			return "";
		}
		BinaryBitmap bitmap = new BinaryBitmap(new HybridBinarizer(new BufferedImageLuminanceSource(image)));
		Map<DecodeHintType, String> hints = new HashMap<DecodeHintType, String>();
		hints.put(DecodeHintType.CHARACTER_SET, charset == null ? "UTF-8" : charset);
		Result result = null;
		try {
			result = new MultiFormatReader().decode(bitmap, hints);
			return result.getText();
		} catch (NotFoundException e) {
			System.out.println("二维码图片[" + imagePath + "]解析失败,堆栈轨迹如下");
			e.printStackTrace();
			return "";
		}
	}
	
}

  • 5
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值