ZZCameraPickerViewController.m
17.1 KB
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
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
//
// ZZCameraPickerViewController.m
// ZZFramework
//
// Created by Yuan on 15/12/18.
// Copyright © 2015年 zzl. All rights reserved.
//
#import "ZZCameraPickerViewController.h"
#import "ZZCameraPickerCell.h"
#import "ZZCameraFocusView.h"
#import "ZZCameraBrowerViewController.h"
#import "ZZCamera.h"
typedef void(^codeBlock)();
@interface ZZCameraPickerViewController()<UICollectionViewDelegate,UICollectionViewDataSource,ZZCameraFocusDelegate,ZZCameraBrowerDataSource>
@property (strong, nonatomic) NSMutableArray<ZZCamera *> *cameraArray;
@property (strong, nonatomic) UICollectionView *picsCollection;
// AVFoundation
@property (strong, nonatomic) AVCaptureSession *session;
@property (strong, nonatomic) AVCaptureStillImageOutput *captureOutput;
@property (strong, nonatomic) AVCaptureDevice *device;
@property (strong, nonatomic) AVCaptureDeviceInput * input;
@property (strong, nonatomic) AVCaptureMetadataOutput * output;
@property (strong, nonatomic) AVCaptureVideoPreviewLayer * preview;
@property (strong, nonatomic) UIView *downView;
@end
@implementation ZZCameraPickerViewController
-(instancetype)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
}
return self;
}
/*
* 隐藏状态栏
*/
-(BOOL)prefersStatusBarHidden
{
return YES;
}
/*
* 创建顶部View
*/
-(void) setTopViewUI
{
UIView *topView = [[UIView alloc]initWithFrame:CGRectMake(0, 0, ZZ_VW, 44)];
if (_themeColor) {
topView.backgroundColor = _themeColor;
}else{
topView.backgroundColor = [UIColor blackColor];
}
topView.alpha = 0.7f;
[self.view addSubview:topView];
//设置闪光灯默认状体为关闭
UIButton *flashBtn = [[UIButton alloc]initWithFrame:CGRectMake(10, 7, 30, 30)];
flashBtn.tag = 2015;
if (self.device.flashMode == 0) {
[flashBtn setImage:Flash_close_Btn_Pic forState:UIControlStateNormal];
}else if(self.device.flashMode == 1){
[flashBtn setImage:Flash_Open_Btn_Pic forState:UIControlStateNormal];
}
[flashBtn addTarget:self action:@selector(flashOfCamera:) forControlEvents:UIControlEventTouchUpInside];
[topView addSubview:flashBtn];
UIButton *changeBtn = [[UIButton alloc]initWithFrame:CGRectMake(ZZ_VW - 40, 7, 30, 30)];
[changeBtn setImage:Change_Btn_Pic forState:UIControlStateNormal];
[changeBtn addTarget:self action:@selector(changeCameraDevice:) forControlEvents:UIControlEventTouchUpInside];
[topView addSubview:changeBtn];
}
/*
* 创建底部View
*/
-(void) setDownViewUI
{
CGFloat photoSize = (ZZ_SCREEN_WIDTH - 60) / 5;
_downView = [[UIView alloc]initWithFrame:CGRectMake(0, ZZ_VH - 64 - photoSize - 20, ZZ_VW, 64 + photoSize + 20)];
if (_themeColor) {
_downView.backgroundColor = _themeColor;
}else{
_downView.backgroundColor = [UIColor blackColor];
}
[self.view addSubview:_downView];
UIButton *cancelBtn = [[UIButton alloc]initWithFrame:CGRectMake(30, photoSize + 37, 50, 30)];
[cancelBtn setTitle:@"取消" forState:UIControlStateNormal];
[cancelBtn setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
[cancelBtn addTarget:self action:@selector(cancel) forControlEvents:UIControlEventTouchUpInside];
[_downView addSubview:cancelBtn];
UIButton *doneBtn = [[UIButton alloc]initWithFrame:CGRectMake(ZZ_VW - 80, photoSize + 37, 50, 30)];
[doneBtn setTitle:@"完成" forState:UIControlStateNormal];
[doneBtn setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
[doneBtn addTarget:self action:@selector(done) forControlEvents:UIControlEventTouchUpInside];
[_downView addSubview:doneBtn];
CGFloat x = (_downView.frame.size.width - 50) / 2;
UIButton *takePhotoBtn = [[UIButton alloc]initWithFrame:CGRectMake(x, photoSize + 27, 50, 50)];
[takePhotoBtn setImage:TakePhoto_Btn_Pic forState:UIControlStateNormal];
[takePhotoBtn addTarget:self action:@selector(takePhoto) forControlEvents:UIControlEventTouchUpInside];
[_downView addSubview:takePhotoBtn];
}
-(void)setupCollectionViewUI
{
UICollectionViewFlowLayout *flowLayout = [[UICollectionViewFlowLayout alloc]init];
CGFloat photoSize = (ZZ_SCREEN_WIDTH - 60) / 5;
flowLayout.minimumInteritemSpacing = 10.0;//item 之间的行的距离
flowLayout.minimumLineSpacing = 10.0;//item 之间竖的距离
flowLayout.itemSize = (CGSize){photoSize,photoSize};
// self.sectionInset = UIEdgeInsetsMake(0, 2, 0, 0);
flowLayout.scrollDirection = UICollectionViewScrollDirectionHorizontal;
_picsCollection = [[UICollectionView alloc]initWithFrame:CGRectMake(10, 10, ZZ_VW - 20, photoSize) collectionViewLayout:flowLayout];
[_picsCollection registerClass:[ZZCameraPickerCell class] forCellWithReuseIdentifier:@"PhotoPickerCell"];
_picsCollection.backgroundColor = [UIColor clearColor];
_picsCollection.delegate = self;
_picsCollection.dataSource = self;
_picsCollection.backgroundColor = [UIColor clearColor];
[_picsCollection setUserInteractionEnabled:YES];
[_downView addSubview:_picsCollection];
}
-(void)cancel{
[self dismissViewControllerAnimated:YES completion:nil];
}
-(void)done{
if (self.cameraArray.count == 0) {
[self dismissViewControllerAnimated:YES completion:nil];
}else{
self.CameraResult(self.cameraArray);
[self dismissViewControllerAnimated:YES completion:nil];
}
}
-(void)takePhoto{
if (_cameraArray.count == self.takePhotoOfMax) {
[self showAlertView:self.takePhotoOfMax];
}else{
[self Captureimage];
UIView *lightScreenView = [[UIView alloc] init];
lightScreenView.frame = self.view.bounds;
lightScreenView.backgroundColor = [UIColor whiteColor];
[self.view addSubview:lightScreenView];
[UIView animateWithDuration:.5 animations:^{
lightScreenView.alpha = 0;
} completion:^(BOOL finished) {
[lightScreenView removeFromSuperview];
}];
}
}
#pragma 懒加载Array
-(NSMutableArray *)cameraArray{
if (!_cameraArray) {
_cameraArray = [NSMutableArray array];
}
return _cameraArray;
}
-(void)viewDidLoad
{
[super viewDidLoad];
[self initCameraMain];
[self setTopViewUI];
[self setDownViewUI];
[self setupCollectionViewUI];
}
-(void)removePicItem:(UIButton *)btn
{
NSInteger index = btn.tag;
[_cameraArray removeObjectAtIndex:index];
[_picsCollection reloadData];
}
#pragma UICollectionView --- Datasource
-(NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView
{
return 1;
}
- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section
{
return self.cameraArray.count;
}
-(UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
ZZCameraPickerCell *photoCell = [collectionView dequeueReusableCellWithReuseIdentifier:@"PhotoPickerCell" forIndexPath:indexPath];
photoCell.removeBtn.tag = indexPath.row;
[photoCell.removeBtn addTarget:self action:@selector(removePicItem:) forControlEvents:UIControlEventTouchUpInside];
ZZCamera *camera = [self.cameraArray objectAtIndex:indexPath.row];
[photoCell loadPhotoDatas:camera.image];
return photoCell;
}
#pragma UICollectionView --- Deleate
-(void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath
{
ZZCameraBrowerViewController *browserController = [[ZZCameraBrowerViewController alloc]init];
browserController.delegate = self;
browserController.indexPath = indexPath;
[browserController setModalTransitionStyle:UIModalTransitionStyleCrossDissolve];
[browserController showIn:self];
}
#pragma mark --- ZZBrowserPickerDelegate
-(NSInteger)zzbrowserPickerPhotoNum:(ZZCameraBrowerViewController *)controller
{
return self.cameraArray.count;;
}
-(NSArray *)zzbrowserPickerPhotoContent:(ZZCameraBrowerViewController *)controller
{
return self.cameraArray;
}
-(void)initCameraMain
{
//1.创建会话层
self.device = [AVCaptureDevice defaultDeviceWithMediaType:AVMediaTypeVideo];
// Input
self.input = [AVCaptureDeviceInput deviceInputWithDevice:self.device error:nil];
// Output
self.captureOutput = [[AVCaptureStillImageOutput alloc] init];
NSDictionary *outputSettings = [[NSDictionary alloc] initWithObjectsAndKeys:AVVideoCodecJPEG,AVVideoCodecKey,nil];
[self.captureOutput setOutputSettings:outputSettings];
// Session
self.session = [[AVCaptureSession alloc]init];
[self.session setSessionPreset:AVCaptureSessionPresetHigh];
if ([self.session canAddInput:self.input])
{
[self.session addInput:self.input];
}
if ([self.session canAddOutput:_captureOutput])
{
[self.session addOutput:_captureOutput];
}
self.preview =[AVCaptureVideoPreviewLayer layerWithSession:self.session];
self.preview.videoGravity = AVLayerVideoGravityResizeAspectFill;
self.preview.frame = self.view.bounds;
[self.view.layer insertSublayer:self.preview atIndex:0];
if (self.session) {
[self.session startRunning];
}
[self prefersStatusBarHidden];
ZZCameraFocusView *focuseView = [[ZZCameraFocusView alloc]initWithFrame:self.view.frame];
focuseView.delegate = self;
[self.view addSubview:focuseView];
}
-(void)cameraFocusOptions:(ZZCameraFocusView *)cameraFocu
{
[self.device lockForConfiguration:nil];
[self.device setFocusMode:AVCaptureFocusModeAutoFocus];
[self.device setFocusPointOfInterest:CGPointMake(50,50)];
//操作完成后,记得进行unlock。
[self.device unlockForConfiguration];
}
//对焦回调
- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context {
if([keyPath isEqualToString:@"adjustingFocus"]){
}
}
/*
* 底层拍照控制
*/
-(void)Captureimage
{
//get connection
AVCaptureConnection *videoConnection = nil;
for (AVCaptureConnection *connection in self.captureOutput.connections) {
for (AVCaptureInputPort *port in [connection inputPorts]) {
if ([[port mediaType] isEqual:AVMediaTypeVideo] ) {
videoConnection = connection;
break;
}
}
if (videoConnection) { break; }
}
//get UIImage
[self.captureOutput captureStillImageAsynchronouslyFromConnection:videoConnection completionHandler:
^(CMSampleBufferRef imageSampleBuffer, NSError *error) {
// Continue as appropriate.
NSData *imageData = [AVCaptureStillImageOutput jpegStillImageNSDataRepresentation:imageSampleBuffer];
UIImage *t_image = [UIImage imageWithData:imageData];
//拍摄时间
NSDate *createDate = [NSDate date];
//拍摄后的照片
t_image = [self fixOrientation:t_image];
NSLog(@"%@",t_image);
if (self.isSavelocal == YES) {
UIImageWriteToSavedPhotosAlbum(t_image, self, @selector(imageSavedToPhotosAlbum:didFinishSavingWithError:contextInfo:), nil);
}
//转model
ZZCamera *camera = [[ZZCamera alloc]init];
camera.image = t_image;
camera.createDate = createDate;
[self.cameraArray addObject:camera];
[_picsCollection reloadData];
}];
}
-(void)imageSavedToPhotosAlbum:(UIImage *)image didFinishSavingWithError:(NSError *)error contextInfo:(void *)contextInfo
{
NSLog(@"调用");
}
- (UIImage *)fixOrientation:(UIImage *)srcImg
{
if (srcImg.imageOrientation == UIImageOrientationUp) return srcImg;
CGAffineTransform transform = CGAffineTransformIdentity;
switch (srcImg.imageOrientation) {
case UIImageOrientationDown:
case UIImageOrientationDownMirrored:
transform = CGAffineTransformTranslate(transform, srcImg.size.width, srcImg.size.height);
transform = CGAffineTransformRotate(transform, M_PI);
break;
case UIImageOrientationLeft:
case UIImageOrientationLeftMirrored:
transform = CGAffineTransformTranslate(transform, srcImg.size.width, 0);
transform = CGAffineTransformRotate(transform, M_PI_2);
break;
case UIImageOrientationRight:
case UIImageOrientationRightMirrored:
transform = CGAffineTransformTranslate(transform, 0, srcImg.size.height);
transform = CGAffineTransformRotate(transform, -M_PI_2);
break;
case UIImageOrientationUp:
case UIImageOrientationUpMirrored:
break;
}
switch (srcImg.imageOrientation) {
case UIImageOrientationUpMirrored:
case UIImageOrientationDownMirrored:
transform = CGAffineTransformTranslate(transform, srcImg.size.width, 0);
transform = CGAffineTransformScale(transform, -1, 1);
break;
case UIImageOrientationLeftMirrored:
case UIImageOrientationRightMirrored:
transform = CGAffineTransformTranslate(transform, srcImg.size.height, 0);
transform = CGAffineTransformScale(transform, -1, 1);
break;
case UIImageOrientationUp:
case UIImageOrientationDown:
case UIImageOrientationLeft:
case UIImageOrientationRight:
break;
}
CGContextRef ctx = CGBitmapContextCreate(NULL, srcImg.size.width, srcImg.size.height,
CGImageGetBitsPerComponent(srcImg.CGImage), 0,
CGImageGetColorSpace(srcImg.CGImage),
CGImageGetBitmapInfo(srcImg.CGImage));
CGContextConcatCTM(ctx, transform);
switch (srcImg.imageOrientation) {
case UIImageOrientationLeft:
case UIImageOrientationLeftMirrored:
case UIImageOrientationRight:
case UIImageOrientationRightMirrored:
CGContextDrawImage(ctx, CGRectMake(0,0,srcImg.size.height,srcImg.size.width), srcImg.CGImage);
break;
default:
CGContextDrawImage(ctx, CGRectMake(0,0,srcImg.size.width,srcImg.size.height), srcImg.CGImage);
break;
}
CGImageRef cgimg = CGBitmapContextCreateImage(ctx);
UIImage *img = [UIImage imageWithCGImage:cgimg];
CGContextRelease(ctx);
CGImageRelease(cgimg);
return img;
}
- (void)changeCameraDevice:(id)sender
{
NSArray *inputs = self.session.inputs;
for ( AVCaptureDeviceInput *input in inputs ) {
AVCaptureDevice *device = input.device;
if ( [device hasMediaType:AVMediaTypeVideo] ) {
AVCaptureDevicePosition position = device.position;
AVCaptureDevice *newCamera = nil;
AVCaptureDeviceInput *newInput = nil;
if (position == AVCaptureDevicePositionFront)
newCamera = [self cameraWithPosition:AVCaptureDevicePositionBack];
else
newCamera = [self cameraWithPosition:AVCaptureDevicePositionFront];
newInput = [AVCaptureDeviceInput deviceInputWithDevice:newCamera error:nil];
[self.session beginConfiguration];
[self.session removeInput:input];
[self.session addInput:newInput];
[self.session commitConfiguration];
break;
}
}
}
- (AVCaptureDevice *)cameraWithPosition:(AVCaptureDevicePosition)position
{
NSArray *devices = [AVCaptureDevice devicesWithMediaType:AVMediaTypeVideo];
for ( AVCaptureDevice *device in devices )
if ( device.position == position )
return device;
return nil;
}
- (void) flashLightModel : (codeBlock) codeBlock{
if (!codeBlock) return;
[self.session beginConfiguration];
[self.device lockForConfiguration:nil];
codeBlock();
[self.device unlockForConfiguration];
[self.session commitConfiguration];
[self.session startRunning];
}
-(void)flashOfCamera:(UIButton *)btn
{
if (btn.tag == 2015) {
if (self.device.flashMode == 0) {
[self flashLightModel:^{
[self.device setFlashMode:AVCaptureFlashModeOn];
}];
[btn setImage:Flash_Open_Btn_Pic forState:UIControlStateNormal];
}else if (self.device.flashMode == 1){
[self flashLightModel:^{
[self.device setFlashMode:AVCaptureFlashModeOff];
}];
[btn setImage:Flash_close_Btn_Pic forState:UIControlStateNormal];
}
}
}
-(void)showAlertView:(NSInteger)photoNumOfMax
{
UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"提醒" message:[NSString stringWithFormat:Alert_Max_TakePhoto,(long)photoNumOfMax]preferredStyle:UIAlertControllerStyleAlert];
UIAlertAction *action1 = [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleCancel handler:^(UIAlertAction *action){
}];
[alert addAction:action1];
[self presentViewController:alert animated:YES completion:nil];
}
@end