Android二维码阅读库

Android QR code reading libs

我有一个 Android QR 码阅读应用程序,运行成本低廉 phone,没有自动对焦功能。我必须阅读的二维码很小,在相机预览中看起来很模糊。 NeoReader 是唯一能够读取此代码的应用程序。 大家都知道阅读二维码的免费图书馆好吗?

我知道:

ZBar (it's ok but not works with blurry code)
ZXing (this Barcode reader not reads the required code; don't tried to integrate)
NeoReader SDK (not free)

我的 ZBar 初始化代码:

scanner = new ImageScanner();
scanner.setConfig(0, Config.ENABLE, 0);
scanner.setConfig(Symbol.QRCODE, Config.ENABLE, 1);
scanner.setConfig(0, Config.X_DENSITY, 1);
scanner.setConfig(0, Config.Y_DENSITY, 1);

如果以上四个中的 none 是一个选项(或者即使它们在哪里!)我强烈建议使用 Googles 自己的库,在 Google 下的 Play 服务中找到命名空间 com.google.android.gms.vision.barcode。它在本地扫描代码,快速且强大,您只需 类.

即可完全控制源代码

有关简单示例,请查看 Android QR Code Reader Made Easy。那应该让你立刻 运行! post 末尾还链接了进一步阅读以获取高级示例。