检查Zbar SDK中的条形码值?

发布于 2024-11-14 20:27:22 字数 295 浏览 2 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一杆小烟枪 2024-11-21 20:27:22

对于相机模式,ZBar 没有在指定时间范围后失败的概念。你必须定义它。

我会定义一个类似这样的方法:

- (void)checkIfScanComplete {
   if(zbarWidgetController.decoding) {  // you may have to add a property for decoding
                                        // alternatively, check if captureSession == nil
      [zbarWidgetController cancelled]; // cancelled is part of CancelDelegate protocol
      // show your error message, but on be sure you do it on main thread
   }
}

然后在任意时间间隔后调用它,如下所示:

[self performSelector:@selector(checkIfScanComplete) withObject:nil afterDelay:yourTimeInterval];

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:

- (void)checkIfScanComplete {
   if(zbarWidgetController.decoding) {  // you may have to add a property for decoding
                                        // alternatively, check if captureSession == nil
      [zbarWidgetController cancelled]; // cancelled is part of CancelDelegate protocol
      // show your error message, but on be sure you do it on main thread
   }
}

Then call it after an arbitrary timeInterval like this:

[self performSelector:@selector(checkIfScanComplete) withObject:nil afterDelay:yourTimeInterval];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文