WP7.5 中的实时条码扫描
我们在 WP7.5 应用程序中使用 ZXing 库扫描条形码。我想知道Mango中是否有允许实时扫描的库。我听说有私人图书馆可以做到这一点,但是这些已经出版了吗?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我今天这样做了,最终使用了 Jonas Follesø
http://jonas.follesoe.no/2011/07/22/qr-code-scanning-on-windows-phone-75-using-zxlib/
编辑:
可以修改上面的代码以使用适当类型的 Reader(取决于您的需要)。我更改了阅读器应用程序以使用 UPCAReader() 而不是 QRCodeReader()。如果您知道想要什么类型,您可能可以在命名空间 com.google.zxing.oned 中找到合适的阅读器。有一个更通用的 OneDReader 也可能有帮助。
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.