I am trying to generate a QR code using Zxing on Android. Since java.awt.image.BufferedImage is not included in Android, I am not sure how to create the QR code image on Android.
EDIT: I don't want my application to require internet access.
|
feedback
|
|
Please look at the zxing source code under | |||||
feedback
|
|
The easiest way is the google charts API. It is a simple rest API that will give you a png file. If you don't want your application to require the internet you have more work on your hands, but it can be done. com.google.zxing.qrcode.encoder are the classes that will generate a QR for you. I never figured out exactly how to use them, but I think it returns a matrix that represents the QR, you'd have to work out how to draw it to a canvas or something. | |||
feedback
|