Rashi Anand
Rashi Anand

Reputation: 71

Live barcode scanning in WP7.5

We are using ZXing library for scanning barcodes in our WP7.5 application. I want to know whether there is any library which allows live scanning in Mango. I heard that there were private libraries to do this, but are these published yet?

Upvotes: 2

Views: 1508

Answers (1)

gbanfill
gbanfill

Reputation: 2216

I did this today and ended up using the instructions from Jonas Follesø

http://jonas.follesoe.no/2011/07/22/qr-code-scanning-on-windows-phone-75-using-zxlib/

Edit: The above code can be modified to use the appropiate type of Reader (depending on what you need). I changed my reader app to use the UPCAReader() instead of QRCodeReader(). If you know what type you want you can probably find an appropiate reader in namespace com.google.zxing.oned. There is a more generic OneDReader which might help too.

Upvotes: 2

Related Questions