1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
#import "LBXScanNative.h"
@interface LBXScanNative()<AVCaptureMetadataOutputObjectsDelegate>
{
BOOL bNeedScanResult;
}
@property (assign,nonatomic)AVCaptureDevice * device;
@property (strong,nonatomic)AVCaptureDeviceInput * input;
@property (strong,nonatomic)AVCaptureMetadataOutput * output;
@property (strong,nonatomic)AVCaptureSession * session;
@property (strong,nonatomic)AVCaptureVideoPreviewLayer * preview;
@property(nonatomic,strong) AVCaptureStillImageOutput *stillImageOutput;//拍照
@property(nonatomic,assign)BOOL isNeedCaputureImage;
//扫码结果
@property (nonatomic, strong) NSMutableArray<LBXScanResult*> *arrayResult;
//扫码类型
@property (nonatomic, strong) NSArray* arrayBarCodeType;
/**
@brief 视频预览显示视图
*/
@property (nonatomic,weak)UIView *videoPreView;
/*!
* 扫码结果返回
*/
@property(nonatomic,copy)void (^blockScanResult)(NSArray<LBXScanResult*> *array);
@end
@implementation LBXScanNative
- (void)setNeedCaptureImage:(BOOL)isNeedCaputureImg
{
_isNeedCaputureImage = isNeedCaputureImg;
}
+ (CGFloat)getCameraVideoMaxScale
{
return 50.0;
}
- (id)initWithPreView:(UIView*)preView ObjectType:(NSArray*)objType cropRect:(CGRect)cropRect success:(void(^)(NSArray<LBXScanResult*> *array))block
{
if (self = [super init]) {
[self initParaWithPreView:preView ObjectType:objType cropRect:cropRect success:block];
}
return self;
}
- (void)initParaWithPreView:(UIView*)videoPreView ObjectType:(NSArray*)objType cropRect:(CGRect)cropRect success:(void(^)(NSArray<LBXScanResult*> *array))block
{
self.arrayBarCodeType = objType;
self.blockScanResult = block;
self.videoPreView = videoPreView;
_device = [AVCaptureDevice defaultDeviceWithMediaType:AVMediaTypeVideo];
if (!_device) {
return;
}
// Input
_input = [AVCaptureDeviceInput deviceInputWithDevice:self.device error:nil];
if ( !_input )
return ;
bNeedScanResult = YES;
// Output
_output = [[AVCaptureMetadataOutput alloc]init];
[_output setMetadataObjectsDelegate:self queue:dispatch_get_main_queue()];
if ( !CGRectEqualToRect(cropRect,CGRectZero) )
{
_output.rectOfInterest = cropRect;
}
/*
// Setup the still image file output
*/
_stillImageOutput = [[AVCaptureStillImageOutput alloc] init];
NSDictionary *outputSettings = [[NSDictionary alloc] initWithObjectsAndKeys:
AVVideoCodecJPEG, AVVideoCodecKey,
nil];
[_stillImageOutput setOutputSettings:outputSettings];
// Session
_session = [[AVCaptureSession alloc]init];
[_session setSessionPreset:AVCaptureSessionPresetHigh];
// _session.
// videoScaleAndCropFactor
if ([_session canAddInput:_input])
{
[_session addInput:_input];
}
if ([_session canAddOutput:_output])
{
[_session addOutput:_output];
}
if ([_session canAddOutput:_stillImageOutput])
{
[_session addOutput:_stillImageOutput];
}
// 条码类型 AVMetadataObjectTypeQRCode
// _output.metadataObjectTypes =@[AVMetadataObjectTypeQRCode];
if (!objType) {
objType = [self defaultMetaDataObjectTypes];
}
_output.metadataObjectTypes = objType;
// Preview
_preview =[AVCaptureVideoPreviewLayer layerWithSession:_session];
_preview.videoGravity = AVLayerVideoGravityResizeAspectFill;
//_preview.frame =CGRectMake(20,110,280,280);
CGRect frame = videoPreView.frame;
frame.origin = CGPointZero;
_preview.frame = frame;
[videoPreView.layer insertSublayer:self.preview atIndex:0];
AVCaptureConnection *videoConnection = [self connectionWithMediaType:AVMediaTypeVideo fromConnections:[[self stillImageOutput] connections]];
// CGFloat maxScale = videoConnection.videoMaxScaleAndCropFactor;
CGFloat scale = videoConnection.videoScaleAndCropFactor;
NSLog(@"%f",scale);
// CGFloat zoom = maxScale / 50;
// if (zoom < 1.0f || zoom > maxScale)
// {
// return;
// }
// videoConnection.videoScaleAndCropFactor += zoom;
// CGAffineTransform transform = videoPreView.transform;
// videoPreView.transform = CGAffineTransformScale(transform, zoom, zoom);
//先进行判断是否支持控制对焦,不开启自动对焦功能,很难识别二维码。
if (_device.isFocusPointOfInterestSupported &&[_device isFocusModeSupported:AVCaptureFocusModeAutoFocus])
{
[_input.device lockForConfiguration:nil];
[_input.device setFocusMode:AVCaptureFocusModeContinuousAutoFocus];
[_input.device unlockForConfiguration];
}
}
- (CGFloat)getVideoMaxScale
{
[_input.device lockForConfiguration:nil];
AVCaptureConnection *videoConnection = [self connectionWithMediaType:AVMediaTypeVideo fromConnections:[[self stillImageOutput] connections]];
CGFloat maxScale = videoConnection.videoMaxScaleAndCropFactor;
[_input.device unlockForConfiguration];
return maxScale;
}
- (void)setVideoScale:(CGFloat)scale
{
[_input.device lockForConfiguration:nil];
AVCaptureConnection *videoConnection = [self connectionWithMediaType:AVMediaTypeVideo fromConnections:[[self stillImageOutput] connections]];
CGFloat zoom = scale / videoConnection.videoScaleAndCropFactor;
videoConnection.videoScaleAndCropFactor = scale;
[_input.device unlockForConfiguration];
CGAffineTransform transform = _videoPreView.transform;
_videoPreView.transform = CGAffineTransformScale(transform, zoom, zoom);
}
- (void)setScanRect:(CGRect)scanRect
{
//识别区域设置
if (_output) {
_output.rectOfInterest = [self.preview metadataOutputRectOfInterestForRect:scanRect];
}
}
- (void)changeScanType:(NSArray*)objType
{
_output.metadataObjectTypes = objType;
}
- (void)startScan
{
if ( _input && !_session.isRunning )
{
[_session startRunning];
bNeedScanResult = YES;
[_videoPreView.layer insertSublayer:self.preview atIndex:0];
// [_input.device addObserver:self forKeyPath:@"torchMode" options:0 context:nil];
}
bNeedScanResult = YES;
}
- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context
{
if ( object == _input.device ) {
NSLog(@"flash change");
}
}
- (void)stopScan
{
bNeedScanResult = NO;
if ( _input && _session.isRunning )
{
bNeedScanResult = NO;
[_session stopRunning];
// [self.preview removeFromSuperlayer];
}
}
- (void)setTorch:(BOOL)torch {
[self.input.device lockForConfiguration:nil];
self.input.device.torchMode = torch ? AVCaptureTorchModeOn : AVCaptureTorchModeOff;
[self.input.device unlockForConfiguration];
}
- (void)changeTorch
{
AVCaptureTorchMode torch = self.input.device.torchMode;
switch (_input.device.torchMode) {
case AVCaptureTorchModeAuto:
break;
case AVCaptureTorchModeOff:
torch = AVCaptureTorchModeOn;
break;
case AVCaptureTorchModeOn:
torch = AVCaptureTorchModeOff;
break;
default:
break;
}
[_input.device lockForConfiguration:nil];
_input.device.torchMode = torch;
[_input.device unlockForConfiguration];
}
-(UIImage *)getImageFromLayer:(CALayer *)layer size:(CGSize)size
{
UIGraphicsBeginImageContextWithOptions(size, YES, [[UIScreen mainScreen]scale]);
[layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return image;
}
- (AVCaptureConnection *)connectionWithMediaType:(NSString *)mediaType fromConnections:(NSArray *)connections
{
for ( AVCaptureConnection *connection in connections ) {
for ( AVCaptureInputPort *port in [connection inputPorts] ) {
if ( [[port mediaType] isEqual:mediaType] ) {
return connection;
}
}
}
return nil;
}
- (void)captureImage
{
AVCaptureConnection *stillImageConnection = [self connectionWithMediaType:AVMediaTypeVideo fromConnections:[[self stillImageOutput] connections]];
[[self stillImageOutput] captureStillImageAsynchronouslyFromConnection:stillImageConnection
completionHandler:^(CMSampleBufferRef imageDataSampleBuffer, NSError *error)
{
[self stopScan];
if (imageDataSampleBuffer)
{
NSData *imageData = [AVCaptureStillImageOutput jpegStillImageNSDataRepresentation:imageDataSampleBuffer];
UIImage *img = [UIImage imageWithData:imageData];
for (LBXScanResult* result in _arrayResult) {
result.imgScanned = img;
}
}
if (_blockScanResult)
{
_blockScanResult(_arrayResult);
}
}];
}
#pragma mark AVCaptureMetadataOutputObjectsDelegate
- (void)captureOutput2:(AVCaptureOutput *)captureOutput didOutputMetadataObjects:(NSArray *)metadataObjects fromConnection:(AVCaptureConnection *)connection
{
//识别扫码类型
for(AVMetadataObject *current in metadataObjects)
{
if ([current isKindOfClass:[AVMetadataMachineReadableCodeObject class]] )
{
NSString *scannedResult = [(AVMetadataMachineReadableCodeObject *) current stringValue];
NSLog(@"type:%@",current.type);
NSLog(@"result:%@",scannedResult);
//测试可以同时识别多个二维码
}
}
}
- (void)captureOutput:(AVCaptureOutput *)captureOutput didOutputMetadataObjects:(NSArray *)metadataObjects fromConnection:(AVCaptureConnection *)connection
{
if (!bNeedScanResult) {
return;
}
bNeedScanResult = NO;
if (!_arrayResult) {
self.arrayResult = [NSMutableArray arrayWithCapacity:1];
}
else
{
[_arrayResult removeAllObjects];
}
//识别扫码类型
for(AVMetadataObject *current in metadataObjects)
{
if ([current isKindOfClass:[AVMetadataMachineReadableCodeObject class]] )
{
bNeedScanResult = NO;
NSLog(@"type:%@",current.type);
NSString *scannedResult = [(AVMetadataMachineReadableCodeObject *) current stringValue];
if (scannedResult && ![scannedResult isEqualToString:@""])
{
LBXScanResult *result = [LBXScanResult new];
result.strScanned = scannedResult;
result.strBarCodeType = current.type;
[_arrayResult addObject:result];
}
//测试可以同时识别多个二维码
}
}
if (_arrayResult.count < 1)
{
bNeedScanResult = YES;
return;
}
if (_isNeedCaputureImage)
{
[self captureImage];
}
else
{
[self stopScan];
if (_blockScanResult) {
_blockScanResult(_arrayResult);
}
}
}
/**
@brief 默认支持码的类别
@return 支持类别 数组
*/
- (NSArray *)defaultMetaDataObjectTypes
{
NSMutableArray *types = [@[AVMetadataObjectTypeQRCode,
AVMetadataObjectTypeUPCECode,
AVMetadataObjectTypeCode39Code,
AVMetadataObjectTypeCode39Mod43Code,
AVMetadataObjectTypeEAN13Code,
AVMetadataObjectTypeEAN8Code,
AVMetadataObjectTypeCode93Code,
AVMetadataObjectTypeCode128Code,
AVMetadataObjectTypePDF417Code,
AVMetadataObjectTypeAztecCode] mutableCopy];
if (floor(NSFoundationVersionNumber) > NSFoundationVersionNumber_iOS_7_1)
{
[types addObjectsFromArray:@[
AVMetadataObjectTypeInterleaved2of5Code,
AVMetadataObjectTypeITF14Code,
AVMetadataObjectTypeDataMatrixCode
]];
}
return types;
}
@end