List of usage examples for com.itextpdf.text.pdf.qrcode QRCode getMatrix
public ByteMatrix getMatrix()
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);/*from w ww . ja v a 2 s . c om*/ Encoder.encode(data, ErrorCorrectionLevel.L, qrcode); ByteMatrix matrix = qrcode.getMatrix(); return matrix; }