检查Zbar SDK中的条形码值?
我在 iPhone 中使用 Zbar SDK。是否可以在相机模式下通过任何委托方法找出无效条形码?例如,如果我在相机模式下使用普通纸张(不是条形码),一段时间后我必须在相机模式下显示无效条形码ZBar SDK 采取的是哪个?我尝试了以下方法,但教程说它是用于扫描照片库图像。
- (void) readerControllerDidFailToRead: (ZBarReaderController*) reader
withRetry: (BOOL) retry.
I use Zbar SDK in iphone.is it possible to find out invalid barcode through any delegate method in camera mode?for example if i take normal paper (not barcode) in camera mode, i have to display invalid barcode in camera mode after some time which is taken by ZBar SDK? I tried the following method,but tutorial says that it is for scaning photo library images.
- (void) readerControllerDidFailToRead: (ZBarReaderController*) reader
withRetry: (BOOL) retry.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于相机模式,ZBar 没有在指定时间范围后失败的概念。你必须定义它。
我会定义一个类似这样的方法:
然后在任意时间间隔后调用它,如下所示:
For camera mode, ZBar has no concept of failing after a specified time frame. You will have to define it.
I would define a method something like this:
Then call it after an arbitrary timeInterval like this: