0

我找到了这个库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 可以很好地识别它没有检测到任何东西 谁能给我一个线索?

4

1 回答 1

1

花了 4 个月的时间才得到审查,但对此的修复已经在 master 上。

+信息:https ://github.com/TheLevelUp/ZXingObjC/pull/235

于 2015-10-09T08:20:23.843 回答