说明:以下程序在JDK 1.7.0 Update 51下测试通过。
前文介绍的是日本人写的生成QRCode格式的二维码编码,它只能实现QR Code格式的二维码编码,而且似乎还停留在2007年的版本。
本文介绍另一个生成和解析二维码的利器:ZXing。
相比于QRCode,ZXing更活跃,一直在更新,ZXing的意思是“zebra crossing”。
ZXing官网:https://github.com/zxing/zxing
点击Release,下载最新的2.3.0。
ZXing不提供编译好的jar包,需要我们自己编译。
编译需要使用Maven,下载并安装Maven并设置好环境之后,分别进入core和javase目录,执行mvn clean dependency:copy-dependencies package。
由于需要下载一些jar包,所以需要一定的时间,请耐心等待。
如果顺利的话,会生成一个target目录,里面会有core-2.3.0.jar和javase-2.3.0.jar。
我编译javase一次就成功了,但是编译core怎么也不成功。
由于没有时间研究,于是我从这里直接下载了一个编译好了core-2.3.0.jar:http://repo1.maven.org/maven2/com/google/zxing/。
好了,一切就绪,把core-2.3.0.jar和javase-2.3.0.jar加到项目库中,现在可以开始写代码了。
1. 完整的代码
import com.google.zxing.BarcodeFormat;
import java.io.File;
import java.util.Hashtable;
import java.awt.image.BufferedImage;
import javax.imageio.ImageIO;
import com.google.zxing.BinaryBitmap;
import com.google.zxing.DecodeHintType;
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 ZxingTwoDimensionCodeHandler {
/**
* 编码
*
* @param contents
* @param width
* @param height
* @param imgPath
*/
public void encode(String contents, int width, int height, String imgPath) {
Hashtable hints = new Hashtable();
// 指定纠错等级
hints.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.L);
// 指定编码格式
hints.put(EncodeHintType.CHARACTER_SET, "utf-8");
try {
BitMatrix bitMatrix = new MultiFormatWriter().encode(contents, BarcodeFormat.QR_CODE, width, height, hints);
MatrixToImageWriter.writeToFile(bitMatrix, "png", new File(imgPath));
} catch (Exception e) {
e.printStackTrace();
}
}
/**
* 解码
* @param imgPath
* @return String
*/
public String decode(String imgPath) {
BufferedImage image = null;
Result result = null;
try {
image = ImageIO.read(new File(imgPath));
if (image == null) {
System.out.println("the decode image may be not exit.");
}
LuminanceSource source = new BufferedImageLuminanceSource(image);
BinaryBitmap bitmap = new BinaryBitmap(new HybridBinarizer(source));
Hashtable hints = new Hashtable();
hints.put(DecodeHintType.CHARACTER_SET, "utf-8");
result = new MultiFormatReader().decode(bitmap, hints);
return result.getText();
} catch (Exception e) {
e.printStackTrace();
}
return null;
}
public static void main(String[] args) {
String imgPath = "D:/test_Zxing.png";
String contents = "人生若只如初见,\n何事秋风悲画扇。\n等闲变却故人心,\n却道故人心易变。";
int width = 300, height = 300;
ZxingTwoDimensionCodeHandler handler = new ZxingTwoDimensionCodeHandler();
handler.encode(contents, width, height, imgPath);
String decodeContent = handler.decode(imgPath);
System.out.println(decodeContent);
}
}
2. 使用Barcode Scanner扫描生成的二维码图片
参考文献:
1. http://sjsky.iteye.com/blog/1142177
2. http://www.cnblogs.com/mengdd/archive/2013/08/29/3289145.html
没有评论:
发表评论