代碼如下: import com.google.zxing.BarcodeFormat; import com.google.zxing.EncodeHintType; import com.google.zxing.MultiFormatWriter; import com.google.zxin ...
代碼如下:
import com.google.zxing.BarcodeFormat;
import com.google.zxing.EncodeHintType;
import com.google.zxing.MultiFormatWriter;
import com.google.zxing.WriterException;
import com.google.zxing.common.BitMatrix;
import com.google.zxing.qrcode.decoder.ErrorCorrectionLevel;
import javax.imageio.ImageIO;
import java.awt.*;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
public class QR_java {
//這是main方法,程式的入口
public static void main(String[] args) throws WriterException, IOException {
//1.利用Zxing.jar裡面提供的一個工具類來幫我生成碼:
//2,創建工具類的對象:---》m
MultiFormatWriter m = new MultiFormatWriter();
//3.利用m對象來創建二維碼:--》動作---》方法:
/*
想要使用encode()需要傳入5個參數:
String var1, BarcodeFormat var2, int var3, int var4, Map<EncodeHintType, ?> var5
String var1 : 內容
BarcodeFormat var2 : 告知你想畫一維碼還是二維碼
int var3 : 接收二維碼的寬
int var4 :接收二維碼的高
Map<EncodeHintType, ?> var5 :存放鍵值對
二維碼的其他信息:
*/
//內容
String str = "春風萬里";
//告知你想畫一維碼還是二維碼:
BarcodeFormat b = BarcodeFormat.QR_CODE; //二維碼
//定義二維碼的寬,高:
int width = 500;
int height = 500;
/*
二維碼的其他信息:
(1)糾錯能力 :
L low 7%
M middle 15%
Q quartered 25%
H high 30%
(2)設置編碼
(3)設置留白:
*/
Map map = new HashMap();
map.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.L);
map.put(EncodeHintType.CHARACTER_SET,"UTF-8");
map.put(EncodeHintType.MARGIN,2);
//調用方法,傳入5個參數:
BitMatrix encode = m.encode(str, b, width, height, map);//encode代表的是二維碼的對象 --》記憶體
//encode代表的是二維碼的對象 --》記憶體 ---->轉成圖片對象
BufferedImage image = new BufferedImage(width,height,BufferedImage.TYPE_INT_BGR);
//就是將二維碼對象中的有效數據展示出來:
for (int x = 0; x < width; x++) {
for (int y = 0; y < height; y++) {
image.setRGB(x,y,encode.get(x,y)? Color.WHITE.getRGB():Color.BLACK.getRGB());
}
}
//圖片對象 ---> 在記憶體:--》寫入硬碟:
File file = new File("測試.png");
//將image對象以png尾碼寫入file中去:
boolean flag = ImageIO.write(image, "png", file);
//根據flag進行後續的判斷:
if (flag){
System.out.println("二維碼生成成功!");
}else{
System.out.println("二維碼生成失敗!");
}
}
}