I have to generate a QR bar-code for my application and for which I have used zxing by google to achieve the same. It is working well when scanned for text, numbers and special characters. But when I give any other language than English and scan the bar-code, it is displaying every character as a question mark.
How do I achieve QR bar-code generation for multi byte characters.
--
You received this message because you are subscribed to the Google Groups "zxing" group.
To unsubscribe from this group and stop receiving emails from it, send an email to zxing+un...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
I have followed the below blog for implementing QR code
I was able to provide qrCodeData instead of that new string statement.
But while tring to replace
hintMap.put(EncodeHintType.ERROR_CORRECTION, ErrorCorrectionLevel.L);
with code suggested i.e.
hintMap.put(EncodeHintType.CHARACTER_SET, charset);
I'm getting the error
"put(EncodeHintType,String) cannot invoke put(com.google.zxing.EncodeHintType, com.google.zxing.qrcode.decoder.ErrorCorrectionLevel) in Map"
PFA of screenshot