Creating a QR Reader
-
[quote author="zarnick" date="1385560727"]I've did some basic search but haven't found anything on this yet.[/quote]
really?!
Just by entering "qt qr" in google resulted in "this":http://developer.nokia.com/Community/Wiki/Qr_Decoder_in_Qt and "this":http://code.google.com/p/qtqr/. -
and what exactly isn't helping with fully implemented solutions?
Maybe you can be more specific with your questions. -
i don't think so.
The problem is that the compiler used to build the prebuilt libraries would have to match exactly your compiler and also the same Qt version linked against in order load them successfully.
It way easier when you have the source-code and build it yourself and integrate it this way.
And since it's such a small project i think most people wouldn't even do the work to release different prebuilt packages.I suggest use "QZXing":http://sourceforge.net/p/qzxing and build it yourself and use it in your application. Shouldn't be that hard.
Only drawback is that all the projects are written for Qt4 so far. You would get rid of the errors in the project file and adapt them to Qt5.
-
you would have to check ZXing capabilities for that. But it seems that it is a feature rich project.
-
Hi @beemaneni! You can read QR codes using SCodes library. It is based on C++ port of widely used ZXing library. It also allows you to create your own QR codes. Check it out on its Github page here.