二維碼框架Zxing實現文字內容二維碼
阿新 • • 發佈:2018-12-18
一 、引入Zxing依賴
<dependency>
<groupId>com.google.zxing</groupId>
<artifactId>core</artifactId>
<version>3.2.1</version>
</dependency>
程式碼演示
public class weima { private static final int BLACK = 0xFF000000; private static final int WHITE = 0xFFFFFFFF; private weima() { } public static BufferedImage toBufferedImage(BitMatrix matrix) { int width = matrix.getWidth(); int height = matrix.getHeight(); BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB); for (int x = 0; x < width; x++) { for (int y = 0; y < height; y++) { image.setRGB(x, y, matrix.get(x, y) ? BLACK : WHITE); } } return image; } public static void writeToFile(BitMatrix matrix, String format, File file) throws IOException { BufferedImage image = toBufferedImage(matrix); if (!ImageIO.write(image, format, file)) { throw new IOException("Could not write an image of format " + format + " to " + file); } } public static void main(String[] args) throws Exception { String text = "內容"; int width = 300; int height = 300; String format = "png"; Hashtable hints = new Hashtable(); hints.put(EncodeHintType.CHARACTER_SET, "utf-8"); BitMatrix bitMatrix = new MultiFormatWriter().encode(text, BarcodeFormat.QR_CODE, width, height, hints); File outputFile = new File("new.png"); weima.writeToFile(bitMatrix, format, outputFile); } }
執行main方法 在專案路勁下會生成指定檔名的二維碼