|
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. |
Answered by
micjahn
Mar 4, 2025
Replies: 1 comment
|
You can try calling the following method directly: |
0 replies
Answer selected by
TheJoeFin
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.