Example usage for com.itextpdf.text.pdf.qrcode Mode BYTE

List of usage examples for com.itextpdf.text.pdf.qrcode Mode BYTE

Introduction

In this page you can find the example usage for com.itextpdf.text.pdf.qrcode Mode BYTE.

Prototype

Mode BYTE

To view the source code for com.itextpdf.text.pdf.qrcode Mode BYTE.

Click Source Link

Usage

From source file:com.mui.certificate.core.HalalCertification.java

License:Apache License

private ByteMatrix generateQRCode(String data) throws Exception {

    QRCode qrcode = new QRCode();
    qrcode.setMode(Mode.BYTE);
    Encoder.encode(data, ErrorCorrectionLevel.L, qrcode);
    ByteMatrix matrix = qrcode.getMatrix();
    return matrix;
}