<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
大多數app都會涉及到上傳照片這個功能,圖片來源無非是從相簿獲取或者相機拍攝。如果不是特別要求,呼叫系統已經滿足需求。但對於特殊需求,就需要自定義相機拍攝介面了。
對於無需客製化的相機,使用系統的UIKit庫裡的UIImagePickerController類,幾行程式碼,幾個代理方法就可滿足所需。但如果要深度客製化,就要系統庫AVFoundation內部的相關類。
建立自己的相機管理類CameraManager(繼承於NSObject)
.h檔案
#import <Foundation/Foundation.h> #import <AVFoundation/AVFoundation.h> //拍照後的回撥,傳遞拍攝的照片 typedef void(^DidCapturePhotoBlock)(UIImage *stillImage); @interface PXCameraManager : NSObject @property (nonatomic, strong) AVCaptureSession *session;//AVCaptureSession物件來執行輸入裝置和輸出裝置之間的資料傳遞 @property (nonatomic, strong) AVCaptureVideoPreviewLayer *previewLayer;//預覽圖層,來顯示照相機拍攝到的畫面 @property (nonatomic, strong) AVCaptureDeviceInput *deviceInput;//AVCaptureDeviceInput物件是輸入流 @property (nonatomic, strong) AVCaptureStillImageOutput *stillImageOutput;//照片輸出流物件 @property (nonatomic, assign) CGRect previewLayerFrame;//拍照區域 /* 為其他類提供的自定義介面 */ //設定拍照區域 (其中targetView為要展示拍照介面的view) - (void)configureWithtargetViewLayer:(UIView *)targetView previewRect:(CGRect)preivewRect; //拍照成功回撥 - (void)takePicture:(DidCapturePhotoBlock)block; //新增/移除相機浮層(如果有需求要在相機拍照區域新增浮層的時候使用) - (void)addCoverImageWithImage:(UIImage *)image; - (void)removeCoverImageWithImage:(UIImage *)image; //前後攝像頭切換 - (void)switchCameras; //閃光燈切換 - (void)configCameraFlashlight; @end
.m檔案
@property (nonatomic, strong) UIView *preview;//展現拍照區域的view @property (nonatomic, strong) UIImageView *coverImageView;//拍照區域浮層 @property (nonatomic, assign) BOOL isCaremaBack; @property (nonatomic, assign) AVCaptureFlashMode flashMode; //初始化的時候設定自己想要的預設屬性 - (instancetype)init{ self = [super init]; if (self) { self.isCaremaBack = YES;//預設後置攝像頭 self.flashMode = AVCaptureFlashModeAuto;//預設自動閃光燈 } return self; }
實現介面的方法
1、準備相關硬體
- (void)configureWithTargetViewLayer:(UIView *)targetView previewRect:(CGRect)preivewRect{ self.preview = targetView; //開始一些相機相關硬體設定 [self addSession];//建立session [self addVideoPreviewLayerWithRect:preivewRect];//用session 建立 建立layer [self addvideoInputBackCamera:self.isCaremaBack];//給session 設定攝像頭 [self addVideoFlashlightWithFlashModel:self.flashMode];//設定閃光燈 [self addStillImageOutput];//給session 設定輸出 }
2、拍照
#pragma mark - - (void)takePicture:(DidCapturePhotoBlock)block{ AVCaptureConnection *captureConnection = [self findCaptureConnection]; [captureConnection setVideoScaleAndCropFactor:1.0f]; [_stillImageOutput captureStillImageAsynchronouslyFromConnection:captureConnection completionHandler:^(CMSampleBufferRef imageDataSampleBuffer, NSError *error) { NSData *imageData = [AVCaptureStillImageOutput jpegStillImageNSDataRepresentation:imageDataSampleBuffer]; UIImage *image = [UIImage imageWithData:imageData]; //這裡可以根據不同需求對拍攝到的照片做一些壓縮或者裁剪的處理,這裡我就偷懶不弄了。 if (block) { block(image); } }]; }
3、切換攝像頭
- (void)switchCameras{ if (!_deviceInput) { return; } [_session beginConfiguration]; [_session removeInput:_deviceInput]; self.isCaremaBack = !self.isCaremaBack; [self addvideoInputBackCamera:self.isCaremaBack]; [_session commitConfiguration]; }
4、切換閃光燈
- (void)configCameraFlashlight{ switch (self.flashMode) { case AVCaptureFlashModeAuto: { self.flashMode = AVCaptureFlashModeOff; } break; case AVCaptureFlashModeOff: { self.flashMode = AVCaptureFlashModeOn; } break; case AVCaptureFlashModeOn: { self.flashMode = AVCaptureFlashModeAuto; } break; default: break; } [self addVideoFlashlightWithFlashModel:self.flashMode]; }
新增/移除 浮層
- (void)addCoverImageWithImage:(UIImage *)image{ _coverImageView.image = image; } - (void)removeCoverImageWithImage:(UIImage *)image{ _coverImageView.image = nil; }
下面是設定硬體裡的幾個方法實現
- (void)addSession{ if (!self.session) { AVCaptureSession *session = [[AVCaptureSession alloc]init]; self.session = session; } }
- (void)addVideoPreviewLayerWithRect:(CGRect)previewRect{ if (!self.previewLayer) { AVCaptureVideoPreviewLayer *previewLayer = [[AVCaptureVideoPreviewLayer alloc]initWithSession:_session]; previewLayer.videoGravity = AVLayerVideoGravityResizeAspectFill; self.previewLayer = previewLayer; [self.preview.layer addSublayer:self.previewLayer]; } self.previewLayer.frame = previewRect; }
- (void)addvideoInputBackCamera:(BOOL)back{ NSArray *devices = [AVCaptureDevice devices]; AVCaptureDevice *frontCamera; AVCaptureDevice *backCamera; //獲取 前、後 攝像頭 for (AVCaptureDevice *device in devices) { if ([device hasMediaType:AVMediaTypeVideo]) { if ([device position] == AVCaptureDevicePositionBack) { backCamera = device; }else if([device position] == AVCaptureDevicePositionFront){ frontCamera = device; } } } NSError *error = nil; if(back){ AVCaptureDeviceInput *backCameraDeviceInput = [AVCaptureDeviceInput deviceInputWithDevice:backCamera error:&error]; if (!error) { if ([_session canAddInput:backCameraDeviceInput]) { [_session addInput:backCameraDeviceInput]; self.deviceInput = backCameraDeviceInput; }else{ NSLog(@"出錯啦"); } } }else{ AVCaptureDeviceInput *frontCameraDeviceInput = [AVCaptureDeviceInput deviceInputWithDevice:frontCamera error:&error]; if (!error) { if ([_session canAddInput:frontCameraDeviceInput]) { [_session addInput:frontCameraDeviceInput]; self.deviceInput = frontCameraDeviceInput; }else{ NSLog(@"出錯啦"); } } } }
- (void)addVideoFlashlightWithFlashModel:(AVCaptureFlashMode )flashModel{ AVCaptureDevice *device = [AVCaptureDevice defaultDeviceWithMediaType:AVMediaTypeVideo]; [device lockForConfiguration:nil]; if ([device hasFlash]) { device.flashMode = self.flashMode; } [device unlockForConfiguration]; }
- (void)addStillImageOutput{ if (!self.stillImageOutput) { AVCaptureStillImageOutput *stillImageOutput = [[AVCaptureStillImageOutput alloc]init]; NSDictionary *outPutSettingDict = [[NSDictionary alloc]initWithObjectsAndKeys:AVVideoCodecJPEG,AVVideoCodecKey, nil]; stillImageOutput.outputSettings = outPutSettingDict; [_session addOutput:stillImageOutput]; self.stillImageOutput = stillImageOutput; } }
- (AVCaptureConnection *)findCaptureConnection{ AVCaptureConnection *videoConnection; for (AVCaptureConnection *connection in _stillImageOutput.connections ) { for (AVCaptureInputPort *port in connection.inputPorts) { if ([[port mediaType] isEqual:AVMediaTypeVideo]) { videoConnection = connection; return videoConnection; } } } return nil; }
到此,一個自定義相機的類就有了,要使用的時候,儘管呼叫吧。
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援it145.com。
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45