-1

如何让 ZBar 不仅返回条码文本字符串,还返回扫描条码的 UIImage?

4

1 回答 1

3

在实现 ZBarReaderDelegate 的类中包含这样的内容:

- (void) imagePickerController: (UIImagePickerController*) reader
didFinishPickingMediaWithInfo: (NSDictionary*) info
{
    // ADD:  get the decode results
    id<NSFastEnumeration> results = [info objectForKey: ZBarReaderControllerResults];
    ZBarSymbol* symbol = nil;

    for (symbol in results)
    {
        // grab first barcode
        break;
    }

    // do something with barcode data
    qrCode.text = symbol.data;

    // do something with barcode image
    // BELOW IS HOW YOU GET THE SCANNED IN IMAGE
    //
    resultImage.image = [info objectForKey: UIImagePickerControllerOriginalImage];

    // dismiss controller
    [reader dismissModalViewControllerAnimated: YES];
于 2011-06-13T02:50:21.853 回答