利用iOS原生库AVFoundation实现条形码的识别功能

最近项目要实现扫描条形码的功能,于是在网络上搜寻快速的实现方案。

最早知道的方案就是ZXing这个Google的库,看了 iOS攻城狮的文章 后决定要用AVFoundation直接实现扫码的功能了。

然后,继续搜比较实用的轮子。

CSDN中的这个例子讲的很详细,代码 改改直接用上。

这份代码有几个问题:定时器导致内存泄露,设置扫描区域和模糊效果的代码太生硬,需要改进。

测试发现,扫描区域设置的不准确,然后查找相关资料,确定元凶:rectOfInterest。

它是AVCaptureMetadataOutput的一个属性,这篇文章有一个讨论,官方也给出了解释:

"The value of this property is a CGRect that determines the receiver's rectangle of interest for each frame of video. The rectangle's origin is top left and is relative to the coordinate space of the device providing the metadata. Specifying a rectOfInterest may improve detection performance for certain types of metadata. The default value of this property is the value CGRectMake(0, 0, 1, 1). Metadata objects whose bounds do not intersect with the rectOfInterest will not be returned."

这个说的很简单,但是具体做起来还是挺抽象的。然后,在中找到loongod的一篇文章,进而在Stack Overflow中找到问题的答案:How do I use the metadataOutputRectOfInterestForRect method and rectOfInterest property to scan a specific area? (QR Code)

根据 loongod 的文章做代码改进,特别是中间透空区域的实现。大功告成!

附上GitHub上这个 Demo 。

你可能感兴趣的:(利用iOS原生库AVFoundation实现条形码的识别功能)