LBXScan
LBXScan copied to clipboard
A barcode and qr code scanner (二维码、扫码、扫一扫、ZXing、ZBar、iOS系统AVFoundation扫码封装,扫码界面效果封装)
ZXing 库模式下扫码成功跳转后再返回扫码界面界面背景图片不消失无法继续扫描
LBXScanViewController.m里,ZXingWrapper的Block里直接使用了[self convertZXBarcodeFormat:barcodeFormat] 导致内存泄漏,有2处。望尽快修复并更新至Pod。
Hello, if i add only this pods ``` pod 'LBXScan/LBXNative','~> 2.2' pod 'LBXScan/UI','~> 2.2' ``` i got error `'LBXScanTypes.h' file not found with include; use "quotes" instead` in `LBXScanViewController.h` line...
好像所有用ZXing都会这样 ,有办法吗?貌似只有ZXing才能支持其他类型的条形码.
 Native解析出來的是 WZ326072031060910159100000046000000460000000041128430vbjYWTi3eUkQxrNNY0jjtQ==:**********:1:1:1:タ¥カシカO:1:70: ZXing解析出來的是 WZ326072031060910159100000046000000460000000041128430vbjYWTi3eUkQxrNNY0jjtQ==:**********:1:1:1:タ\カシカO:1:70: 使用過別的QRcode解析app 發現ZXing是正確的 Native的¥目前看起來是解析錯誤導致出來的亂碼 我還是希望能在Native上解析正確 因為Native可以一次解析兩個QRCode並且速度快 ZXing只能一次一個而且當畫面出現兩個QRcode時候常常無法抓到QRcode必須要遮住其中一個QRcode才能解析成功 麻煩開發者看一下此問題
我APP上架以后,我搜集的崩溃信息,调用createQRWithString会偶现崩溃
把从相册中的照片缩放到屏幕大小,就可以识别成功了,建议作者改进一下。 (对不住作者了,动了你框架中的代码) 我知道是这个原因导致的失败,也是在翻阅SGQRCode的代码知道的。  + (UIImage *)imageSizeWithScreenImage:(UIImage *)image { CGFloat imageWidth = image.size.width; CGFloat imageHeight = image.size.height; CGFloat screenWidth = [UIScreen mainScreen].bounds.size.width; CGFloat screenHeight = [UIScreen mainScreen].bounds.size.height; if (imageWidth
你好,我集成了LBXNative和UI,但是使用过程中出现了点小问题,我想的是点击按钮push到LBXScanViewController,代码: - (IBAction)clickQRCode:(id)sender { LBXScanViewController *vc = [LBXScanViewController new]; vc.libraryType = SLT_Native; vc.scanCodeType = SCT_QRCode; vc.isOpenInterestRect = YES; vc.delegate = self; vc.cameraInvokeMsg = @"相机启动中"; vc.isNeedScanImage = YES; [self.navigationController pushViewController:vc animated:YES];...