类com.google.zxing.pdf417.PDF417Writer源码实例Demo

下面列出了怎么用com.google.zxing.pdf417.PDF417Writer的API类实例代码及写法,或者点击链接到github查看源代码。

源代码1 项目: tutorials   文件: ZxingBarcodeGenerator.java
public static BufferedImage generatePDF417BarcodeImage(String barcodeText) throws Exception {
    PDF417Writer barcodeWriter = new PDF417Writer();
    BitMatrix bitMatrix = barcodeWriter.encode(barcodeText, BarcodeFormat.PDF_417, 700, 700);

    return MatrixToImageWriter.toBufferedImage(bitMatrix);
}
 
 类所在包
 同包方法