i need to generate a special QR Code like this one 1, you see it has some relief. I can generate basic qr-code with this code
Map<EncodeHintType, Object> encodingHints = new HashMap<>();
encodingHints.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.M);
BarcodeQRCode barcodeQRCode;
barcodeQRCode = new BarcodeQRCode(code, 1000, 1000, encodingHints);
Image codeQrImage = barcodeQRCode.getImage();`
If someone know how to that, it will be a pleasure for me. I think it's just a different body shape or eye frame shape but i'm not sure
Comments
Post a Comment