回覆列表
-
1 # IT資訊i
-
2 # jimware
QRCode 方式
新增依賴:
<dependency> <groupId>org</groupId> <artifactId>QRCode</artifactId> <version>3.0</version></dependency>程式碼:
Qrcode x = new Qrcode();x.setQrcodeErrorCorrect("M");//糾錯等級x.setQrcodeEncodeMode("B");//N 代表資料; A 代表a-A; B 代表其他字元x.setQrcodeVersion(7);//版本 String qrData = "https://www.baidu.com/"; int width = 67 + 12 * (7 - 1);int height = 67 + 12 * (7 - 1);int pixoff = 2;//偏移量 BufferedImage bufferedImage = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);Graphics2D gs = bufferedImage.createGraphics();gs.setBackground(Color.WHITE);gs.setColor(Color.BLACK);gs.clearRect(0, 0, width, height); byte[] d = qrData.getBytes("utf-8");if (d.length > 0 && d.length < 120) { boolean[][] s = x.calQrcode(d); for (int i = 0; i < s.length; i++) { for (int j = 0; j < s.length; j++) { if (s[j][i]) { gs.fillRect(j * 3 + pixoff, i * 3 + pixoff, 3, 3); } } }} gs.dispose();bufferedImage.flush(); try { ImageIO.write(bufferedImage, "png", new File("F:/qrcode.png"));} catch (IOException e) { e.printStackTrace();} ///////以上步驟已經生成了二維碼,以下步驟為將二維碼檔案讀取並轉換為base64位位元組流的過程//// byte[] data = null;// 讀取圖片位元組陣列try { InputStream in = new FileInputStream("F:/qrcode.png"); data = new byte[in.available()]; in.read(data); in.close();} catch (IOException e) { e.printStackTrace();}// 對位元組陣列Base64編碼BASE64Encoder encoder = new BASE64Encoder();return encoder.encode(data);// 返回Base64編碼過的位元組陣列字串在上一步過程中,二維碼原始檔生成於 F:/qrcode.png 目錄下。
為了方便微服務使用,我將原始檔轉換成base64位元組流
在HTML檔案中,將返回的位元組流新增到<img>標籤中即可,示例如下:
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIsAAACLCAIAAAD……QAAAAASUVO RK5CYII="/>
其中:“iVBORw0KGgoAAAANSUhEUgAAAIsAAACLCAIAAAD……QAAAAASUVO RK5CYII=”即為以上服務中返回的base64位元組流
<dependency> <groupId>com.google.zxing</groupId> <artifactId>core</artifactId> <version>3.2.1</version></dependency><dependency> <groupId>com.google.zxing</groupId> <artifactId>javase</artifactId> <version>3.0.0</version></dependency>生成二維碼的基本程式碼還是比較簡單的。// 定義要生成二維碼的基本引數int width = 300;int height = 300;String type = "png";String content = "www.baidu.com";// 定義二維碼的配置,使用HashMapHashMap hints = new HashMap();// 字符集,內容使用的編碼hints.put(EncodeHintType.CHARACTER_SET, "UTF-8");// 容錯等級,H、L、M、Qhints.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.M);// 邊距,二維碼距離邊的空白寬度hints.put(EncodeHintType.MARGIN, 2);try { // 生成二維碼物件,傳入引數:內容、碼的型別、寬高、配置 BitMatrix bitMatrix = new MultiFormatWriter().encode(content, BarcodeFormat.QR_CODE, width, height, hints); // 定義一個路徑物件 Path file = new File("D:/learn/code.png").toPath(); // 生成二維碼,傳入二維碼物件、生成圖片的格式、生成的路徑 MatrixToImageWriter.writeToPath(bitMatrix, type, file);} catch (WriterException e) { e.printStackTrace();} catch (IOException e) { e.printStackTrace();}注意一點,因為上面的內容我們設定的是。掃碼結果是這個字串文字。如果想要掃碼之後直接跳轉到該連結,需要在網址前面加上協議。
try { // 宣告一個解析二維碼的物件 MultiFormatReader formatReader = new MultiFormatReader(); // 生成一個檔案物件,傳入剛才生成二維碼的路徑 File file = new File("D:/learn/code.png"); // 把檔案物件轉成一個圖片物件 BufferedImage image = ImageIO.read(file); // 最後需要的是一個binaryBitmap物件。 BinaryBitmap binaryBitmap = new BinaryBitmap(new HybridBinarizer(new BufferedImageLuminanceSource(image))); // 配置,解析時傳入 HashMap hints = new HashMap(); hints.put(EncodeHintType.CHARACTER_SET, "utf-8"); // 解析得到一個Result物件,該物件包含二維碼的資訊 Result result = formatReader.decode(binaryBitmap, hints); // 分別輸出二維碼型別和內容的方法 System.out.println(result.getBarcodeFormat()); System.out.println(result.getText());} catch (IOException e) { e.printStackTrace();} catch (NotFoundException e) { e.printStackTrace();}
百度搜索圈T社群(www.aiquanti.com) 免費影片教程
<dependency> <groupId>com.google.zxing</groupId> <artifactId>core</artifactId> <version>3.2.1</version></dependency><dependency> <groupId>com.google.zxing</groupId> <artifactId>javase</artifactId> <version>3.0.0</version></dependency>生成二維碼的基本程式碼還是比較簡單的。
// 定義要生成二維碼的基本引數int width = 300;int height = 300;String type = "png";String content = "www.baidu.com";// 定義二維碼的配置,使用HashMapHashMap hints = new HashMap();// 字符集,內容使用的編碼hints.put(EncodeHintType.CHARACTER_SET, "UTF-8");// 容錯等級,H、L、M、Qhints.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.M);// 邊距,二維碼距離邊的空白寬度hints.put(EncodeHintType.MARGIN, 2);try { // 生成二維碼物件,傳入引數:內容、碼的型別、寬高、配置 BitMatrix bitMatrix = new MultiFormatWriter().encode(content, BarcodeFormat.QR_CODE, width, height, hints); // 定義一個路徑物件 Path file = new File("D:/learn/code.png").toPath(); // 生成二維碼,傳入二維碼物件、生成圖片的格式、生成的路徑 MatrixToImageWriter.writeToPath(bitMatrix, type, file);} catch (WriterException e) { e.printStackTrace();} catch (IOException e) { e.printStackTrace();}注意一點,因為上面的內容我們設定的是。掃碼結果是這個字串文字。如果想要掃碼之後直接跳轉到該連結,需要在網址前面加上協議。
try { // 宣告一個解析二維碼的物件 MultiFormatReader formatReader = new MultiFormatReader(); // 生成一個檔案物件,傳入剛才生成二維碼的路徑 File file = new File("D:/learn/code.png"); // 把檔案物件轉成一個圖片物件 BufferedImage image = ImageIO.read(file); // 最後需要的是一個binaryBitmap物件。 BinaryBitmap binaryBitmap = new BinaryBitmap(new HybridBinarizer(new BufferedImageLuminanceSource(image))); // 配置,解析時傳入 HashMap hints = new HashMap(); hints.put(EncodeHintType.CHARACTER_SET, "utf-8"); // 解析得到一個Result物件,該物件包含二維碼的資訊 Result result = formatReader.decode(binaryBitmap, hints); // 分別輸出二維碼型別和內容的方法 System.out.println(result.getBarcodeFormat()); System.out.println(result.getText());} catch (IOException e) { e.printStackTrace();} catch (NotFoundException e) { e.printStackTrace();}