1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
| package com.payplatform.util;
import java.awt.image.BufferedImage; import java.io.File; import java.io.IOException; import java.util.HashMap; import java.util.Map; import javax.imageio.ImageIO; import com.google.zxing.BarcodeFormat; import com.google.zxing.Binarizer; 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.NotFoundException; import com.google.zxing.Result; import com.google.zxing.WriterException; import com.google.zxing.client.j2se.BufferedImageLuminanceSource; import com.google.zxing.common.BitMatrix; import com.google.zxing.common.HybridBinarizer;
public class QRCodeUtil { private static final int BLACK = 0xFF000000; private static final int WHITE = 0xFFFFFFFF; public static void main(String[] args) throws Exception { zxingCodeCreate("http://www.baidu.com", 300, 300, "D:/qrcode.jpg", "jpg");
}
public static void zxingCodeCreate(String text, int width, int height, String outPutPath, String imageType){ Map<EncodeHintType, String> his = new HashMap<EncodeHintType, String>(); his.put(EncodeHintType.CHARACTER_SET, "utf-8"); try { BitMatrix encode = new MultiFormatWriter().encode(text, BarcodeFormat.QR_CODE, width, height, his); int codeWidth = encode.getWidth(); int codeHeight = encode.getHeight(); BufferedImage image = new BufferedImage(codeWidth, codeHeight, BufferedImage.TYPE_INT_RGB); for (int i = 0; i < codeWidth; i++) { for (int j = 0; j < codeHeight; j++) { image.setRGB(i, j, encode.get(i, j) ? BLACK : WHITE); } } File outPutImage = new File(outPutPath); if(!outPutImage.exists()) outPutImage.createNewFile(); ImageIO.write(image, imageType, outPutImage); } catch (WriterException e) { e.printStackTrace(); System.out.println("二维码生成失败"); } catch (IOException e) { e.printStackTrace(); System.out.println("生成二维码图片失败"); } }
@SuppressWarnings({ "rawtypes", "unchecked" }) public static String zxingCodeAnalyze(String analyzePath) throws Exception{ MultiFormatReader formatReader = new MultiFormatReader(); String resultStr = null; try { File file = new File(analyzePath); if (!file.exists()) { return "二维码不存在"; } BufferedImage image = ImageIO.read(file); LuminanceSource source = new BufferedImageLuminanceSource(image); Binarizer binarizer = new HybridBinarizer(source); BinaryBitmap binaryBitmap = new BinaryBitmap(binarizer); Map hints = new HashMap(); hints.put(EncodeHintType.CHARACTER_SET, "UTF-8"); Result result = formatReader.decode(binaryBitmap, hints); resultStr = result.getText(); } catch (NotFoundException e) { e.printStackTrace(); } System.out.println(resultStr); return resultStr; } }
|