In Android, Using ZXing we can scan a QR code through phone camera and decode it.

But, in my scenario, the QR code image is stored in the phone itself and I need to decode it.

Is there anyway to decode a QR image in this manner?

link|improve this question

May I suggest a Google search? I'm pretty sure there are libraries out there. – Seva Alekseyev Mar 2 '11 at 18:00
there are libraries to scan a QR code through camera. but my requirement is bit different. – Veera Mar 2 '11 at 18:06
Veera, you can use ZXing code to do this from bitmaps and not the camera as per my answer. – Matthew Willis Mar 2 '11 at 18:48
feedback

1 Answer

up vote 2 down vote accepted

You can use ZXing code for this.

Check out DecodeHandler.java.

link|improve this answer
captureActivity capture QR code image from camera and after decoding it, it shows results according to type of data stored in QR code. e.g. if website URL is encoded in QR code, the result screen will have a button to open that URL and likevise. I need to read image from SD card, decode it and handle the output in the same manner zxing does in case of decoding via captureActivity. What do I need to do after getting output in "Result result"? – CoolZero Infinity Mar 28 at 12:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.