我找到了这个库https://github.com/TheLevelUp/ZXingObjC,它是 ZXing 到 Objective-C 的一个端口,支持多个条码扫描。我需要一个应用程序,所以我试图让它工作,但是当我传递带有多个条形码的图像时它没有检测到任何东西这是我正在使用的代码
CGImageRef imageToDecode = self.imgn.image.CGImage; // Given a CGImage in which we are looking for barcodes
ZXLuminanceSource* source = [[[ZXCGImageLuminanceSource alloc] initWithCGImage:imageToDecode] autorelease];
ZXBinaryBitmap* bitmap = [ZXBinaryBitmap binaryBitmapWithBinarizer:[ZXHybridBinarizer binarizerWithSource:source]];
NSError* error = nil;
ZXDecodeHints* hints = [ZXDecodeHints hints];
ZXMultiFormatReader* reader = [ZXMultiFormatReader reader];
ZXGenericMultipleBarcodeReader* multi = [[ZXGenericMultipleBarcodeReader alloc] initWithDelegate:reader];
NSArray * result = [multi decodeMultiple:bitmap hints:hints error:&error];
这将返回一个 nil 数组,并且错误包含“未找到条形码”错误。当我只使用带有一个条形码的 MultiFormatReader 时,它可以,但是当我添加一张带有多个相同条形码的图片时,MultiFormatReader 可以很好地识别它没有检测到任何东西 谁能给我一个线索?