-
I would like to make recommendation on physical printing size of a QR Code which was just generated. To do this I need to know the QR Code Level. Additionally is there a way to get the QR Code version such as Version 10 given the input text and error correction. What I would like to be able to do is Generate a QR Code, then check the BarcodeWriter for what QR Code Level was used to build that QR Code. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You can try calling the following method directly: |
Beta Was this translation helpful? Give feedback.
You can try calling the following method directly:
ZXing.QrCode.Internal.Encoder.encode(String content, ErrorCorrectionLevel ecLevel, IDictionary<EncodeHintType, object> hints)
It gives you a "QRCode" instance which has the property "Version". Perhaps this is what you need.