I have approximately 2000 images with QR codes in them, each representing exactly one letter. Does anyone know a good opensource framework in java (java prefered, but any other language is fine, too) to decode them?

I have only found shareware frameworks and webservices won't allow me to upload 2k images to their server.

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

Android has the "Barcode Scanner" app that can handle QR codes. The source code is available here. Being Android, it's written in Java (although using the Android API rather than J2SE, but that it should be trivial to port the part of the source that decodes the QR code).

I'm not sure about the licensing, you may want to check with ZXing before you help yourself to their code and use it in your own project.

link|improve this answer
Looks like it's already coded to support either JavaSE or Android. – Software Monk Jun 3 '11 at 23:43
thanks, I finally ended up using sourceforge.jp/projects/qrcode which worked great for me. – dschihejns Jun 3 '11 at 23:58
feedback

ZXing is the de facto standard. It has pure Java bindings and a web server you can run. Look in zxingorg/ or try it at zxing.org/w/decode.jspx.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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