在 Android 应用程序中解码 QR 码?
In Android, Using ZXing we can scan a QR code through phone camera and decode it.
But, in my scenario, the QR code image is stored in the phone itself and I need to decode it.
Is there anyway to decode a QR image in this manner?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 ZXing 代码来实现此目的。
查看DecodeHandler.java。
You can use ZXing code for this.
Check out DecodeHandler.java.
您可以简单地使用 Mobile Vision API 从图像中解码 QR 码。它非常准确,可以检测图像上的多个 QR 码。
您必须包含以下库才能使用 Mobile Vision API:
compile 'com.google.android.gms:play-services-vision:9.6.1'
You can simply use the Mobile Vision API for decoding a QR Code from Image.It is very accurate and can detect more than one Qr code over image.
You have to include the following library inorder to use Mobile Vision API :
compile 'com.google.android.gms:play-services-vision:9.6.1'