02-13-2013 09:28 AM
Hi,
any starting point how I could encode/generate a qrcode as an image to display in QML?
thanks!
Solved! Go to Solution.
02-13-2013 04:16 PM
02-13-2013 08:00 PM
You can have a look at Zxing. They have developed a QR generator/decoder for Java but they also created a partial C++ port. Maybe it helps you a little.
http://code.google.com/p/zxing/
02-27-2013 08:57 PM
Have you solved your problem? This is a easy way to show QrCode.
QrCodeView {
id: qrCode
data: "Your Data Here"
preferredWidth: 300
preferredHeight: 300
horizontalAlignment: HorizontalAlignment.Center
} You need to import
import bb.cascades.multimedia 1.0 import bb.multimedia 1.0
and add the following line to your .pro file:
LIBS += -lbbcascadesmultimedia
http://developer.blackberry.com/cascades/reference
02-27-2013 09:51 PM