ios ZXing 扫瞄 条形码问题

在ios 中 扫瞄二维码,条形码基本有 2中第三方的库,一个是zbar 一个是zxing,zxing 在android中表现的比较出色,但是在ios 中不是很好用,扫瞄效率低,我们一般都用zbar,但是有些 条形码就是很奇葩,用zbar无法识别,下面就是一种


ios ZXing 扫瞄 条形码问题_第1张图片

 我用了好多ios 的app 都无法识别, 《我查查》,《快拍二维码》,《微信》,自己用zbar都不行,最后用android 手机轻松扫瞄ok,哪我知道为什么了,是zxing可以搞定这种条形码。马上就换了zxing 来测试。 去github 找到了 zxing 的demo。但是悲剧的时无法识别各种条形码。

而且工程还报错。

  报Private field 'cached_y_' not used 编译通不过,解决办法就是

删除工程“buliding setting”的"Other Warning Flags"  的后面的参数:
"-Werror" ,  "-Wno-unused-parameter"  等等
  然后真机debug 完全ok,但是还是无法扫瞄 条形码!为什么呢?

  我在网上着了下原因 ,问题解决了。

方法是:

 

 1.修改 OverlayView.m文件中的61行左右

 

[html]  view plain copy
  1. // self.oneDMode = isOneDModeEnabled;  
注释掉。

2.在ZXingWidgetController.m中用这个函数替换以前的函数

[html]  view plain copy
  1. - (void)captureOutput:(AVCaptureOutput *)captureOutput   
  2. didOutputSampleBuffer:(CMSampleBufferRef)sampleBuffer   
  3.        fromConnection:(AVCaptureConnection *)connection   
  4. {  
  5.   if (!decoding) {  
  6.     return;  
  7.   }  
  8.   CVImageBufferRef imageBuffer = CMSampleBufferGetImageBuffer(sampleBuffer);   
  9.   /*Lock the image buffer*/  
  10.   CVPixelBufferLockBaseAddress(imageBuffer,0);   
  11.   /*Get information about the image*/  
  12.   size_t bytesPerRow = CVPixelBufferGetBytesPerRow(imageBuffer);   
  13.   size_t width = CVPixelBufferGetWidth(imageBuffer);   
  14.   size_t height = CVPixelBufferGetHeight(imageBuffer);   
  15.       
  16.   uint8_t* baseAddress = CVPixelBufferGetBaseAddress(imageBuffer);   
  17.   void* free_me = 0;  
  18.   if (true) { // iOS bug?  
  19.     uint8_t* tmp = baseAddress;  
  20.     int bytes = bytesPerRow*height;  
  21.     free_me = baseAddress = (uint8_t*)malloc(bytes);  
  22.     baseAddress[0] = 0xdb;  
  23.     memcpy(baseAddress,tmp,bytes);  
  24.   }  
  25.   
  26.   CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB();   
  27.   CGContextRef newContext =  
  28.     CGBitmapContextCreate(baseAddress, width, height, 8, bytesPerRow, colorSpace,  
  29.                           kCGBitmapByteOrder32Little | kCGImageAlphaNoneSkipFirst);   
  30.   
  31.   CGImageRef capture = CGBitmapContextCreateImage(newContext);   
  32.   CVPixelBufferUnlockBaseAddress(imageBuffer,0);  
  33.   free(free_me);  
  34.   
  35.   CGContextRelease(newContext);   
  36.   CGColorSpaceRelease(colorSpace);  
  37.   
  38.   CGRect cropRect = [overlayView cropRect];  
  39.   if (oneDMode) {  
  40.     // let's just give the decoder a vertical band right above the red line  
  41. <span style="color:#ff0000;">//    cropRect.origin.x = cropRect.origin.x + (cropRect.size.width / 2) - (ONE_D_BAND_HEIGHT + 1);  
  42. //    cropRect.size.width = ONE_D_BAND_HEIGHT;  
  43. //    // do a rotate  
  44. //    CGImageRef croppedImg = CGImageCreateWithImageInRect(capture, cropRect);  
  45. //    CGImageRelease(capture);  
  46. //    capture = [self CGImageRotated90:croppedImg];  
  47. //    capture = [self CGImageRotated180:capture];  
  48. //    //              UIImageWriteToSavedPhotosAlbum([UIImage imageWithCGImage:capture], nil, nil, nil);  
  49. //    CGImageRelease(croppedImg);  
  50. //    CGImageRetain(capture);  
  51. //    cropRect.origin.x = 0.0;  
  52. //    cropRect.origin.y = 0.0;</span>  
  53.     cropRect.size.width = CGImageGetWidth(capture);  
  54.     cropRect.size.height = CGImageGetHeight(capture);  
  55.   }  
  56.   
  57.   // N.B.  
  58.   // - Won't work if the overlay becomes uncentered ...  
  59.   // - iOS always takes videos in landscape  
  60.   // - images are always 4x3; device is not  
  61.   // - iOS uses virtual pixels for non-image stuff  
  62.   
  63.   {  
  64.     float height = CGImageGetHeight(capture);  
  65.     float width = CGImageGetWidth(capture);  
  66.   
  67.     CGRect screen = UIScreen.mainScreen.bounds;  
  68.     float tmp = screen.size.width;  
  69.     screen.size.width = screen.size.height;;  
  70.     screen.size.height = tmp;  
  71.   
  72.     cropRect.origin.x = (width-cropRect.size.width)/2;  
  73.     cropRect.origin.y = (height-cropRect.size.height)/2;  
  74.   }  
  75.   CGImageRef newImage = CGImageCreateWithImageInRect(capture, cropRect);  
  76.   CGImageRelease(capture);  
  77. <span style="color:#ff0000;"> // UIImage *scrn = [[UIImage alloc] initWithCGImage:newImage];  
  78.     int backCameraImageOrientation = UIImageOrientationRight;  
  79.     UIImage *scrn = [[UIImage alloc] initWithCGImage:newImage scale:  
  80.                      (CGFloat)1.0 orientation:backCameraImageOrientation];  
  81. </span>  
  82.   CGImageRelease(newImage);  
  83.   Decoder *d = [[Decoder alloc] init];  
  84.   d.readers = readers;  
  85.   d.delegate = self;  
  86.   cropRect.origin.x = 0.0;    
  87.   cropRect.origin.y = 0.0;  
  88.   decoding = [d decodeImage:scrn cropRect:cropRect] == YES ? NO : YES;  
  89.   [d release];  
  90.   [scrn release];  
  91. }   

 也就是上面红色的部分做了修改

3.在ViewController.mm 文件中做下面的修改

[html]  view plain copy
  1. #import "MultiFormatOneDReader.h"  
  2.   
  3. - (void)pressButton1:(UIButton *)button  
  4. {  
  5.   <span style="color:#ff0000;">  ZXingWidgetController *widController = [[ZXingWidgetController alloc] initWithDelegate:self showCancel:YES OneDMode:YES];  
  6.     NSMutableSet *readers = [[NSMutableSet alloc] init];  
  7.     QRCodeReader *qrcodeReader = [[QRCodeReader alloc] init];  
  8.   
  9.     MultiFormatOneDReader *OneReaders=[[MultiFormatOneDReader alloc]init];  
  10.    
  11.     [readers addObject:qrcodeReader];  
  12.      [readers addObject:OneReaders];</span>  
  13.     widController.readers = readers;  
  14.     [self presentViewController:widController animated:YES completion:^{}];  
  15. }  

然后修改全部ok了,扫瞄条形码就完全ok了。

 看效果:

ios ZXing 扫瞄 条形码问题_第2张图片

 二:



ios ZXing 扫瞄 条形码问题_第3张图片

三:


ios ZXing 扫瞄 条形码问题_第4张图片


ios ZXing 扫瞄 条形码问题_第5张图片

四:


ios ZXing 扫瞄 条形码问题_第6张图片


原文链接:http://blog.csdn.net/justinjing0612/article/details/9337329#comments


你可能感兴趣的:(ios,zxing,二维码)