iOS自定义相机实现拍照、录制视频

 更新时间:2019年04月21日 11:24:23   作者:有点纠结  
这篇文章主要为大家详细介绍了iOS自定义相机实现拍照、录制视频,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文实例为大家分享了iOS自定义相机实现拍照、录制视频的具体代码,供大家参考,具体内容如下

使用AVFoundation框架。

这里是Demo

首先声明以下对象:

#import "CustomeCameraViewController.h"
#import <AVFoundation/AVFoundation.h>
#import <AssetsLibrary/AssetsLibrary.h>
 
@interface CustomeCameraViewController ()<AVCaptureFileOutputRecordingDelegate>
 
{
  // AVCaptureSession对象来执行输入设备和输出设备之间的数据传递
  AVCaptureSession *iSession;
  //当前设备
  AVCaptureDevice *iDevice;
  //输入设备
  AVCaptureDeviceInput *iDeviceInput;
  //照片输出流
  AVCaptureStillImageOutput *iStillImageOutput;
  //预览图层
  AVCaptureVideoPreviewLayer *iPreviewLayer;
  
}

初始化各对象:

- (void)viewDidLoad {
  [super viewDidLoad];
  
  //点击屏幕对焦
  UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(focusTap:)];
  [self.view addGestureRecognizer:tap];
  
  
  iSession = [[AVCaptureSession alloc]init];
  
  NSArray *deviceArray = [AVCaptureDevice devicesWithMediaType:AVMediaTypeVideo];
  for (AVCaptureDevice *device in deviceArray) {
    
    //AVCaptureDevicePositionBack 后置摄像头
    //AVCaptureDevicePositionFront 前置摄像头
    if (device.position == AVCaptureDevicePositionBack) {
      iDevice = device;
    }
  }
  
  
  iSession.sessionPreset = [self getSessionPresetForDevice:iDevice];
  
  iDeviceInput = [[AVCaptureDeviceInput alloc]initWithDevice:iDevice error:nil];
  
  
  ////输出设置。AVVideoCodecJPEG  输出jpeg格式图片
  iStillImageOutput = [[AVCaptureStillImageOutput alloc]init];
  NSDictionary *outputDic = [NSDictionary dictionaryWithObjectsAndKeys:AVVideoCodecJPEG,AVVideoCodecKey, nil];
  [iStillImageOutput setOutputSettings:outputDic];
  
  
  //更改这个设备设置的时候必须先锁定设备,修改完后再解锁,否则崩溃
  [iDevice lockForConfiguration:nil];
  if ([iDevice isFlashModeSupported:AVCaptureFlashModeOff]) {
    [iDevice setFlashMode:AVCaptureFlashModeOff];
  }
  if ([iDevice isFocusModeSupported:AVCaptureFocusModeAutoFocus]) {
    [iDevice setFocusMode:AVCaptureFocusModeAutoFocus];
  }
  if ([iDevice isWhiteBalanceModeSupported:AVCaptureWhiteBalanceModeAutoWhiteBalance]) {
    [iDevice setWhiteBalanceMode:AVCaptureWhiteBalanceModeAutoWhiteBalance];
  }
  [iDevice unlockForConfiguration];
  
  if ([iSession canAddInput:iDeviceInput]) {
    [iSession addInput:iDeviceInput];
  }
  if ([iSession canAddOutput:iStillImageOutput]) {
    [iSession addOutput:iStillImageOutput];
  }
  if ([iSession canAddOutput:iVideoOutput]) {
    [iSession addOutput:iVideoOutput];
  }
  
  //初始化预览图层
  iPreviewLayer = [[AVCaptureVideoPreviewLayer alloc]initWithSession:iSession];
  [iPreviewLayer setVideoGravity:AVLayerVideoGravityResizeAspectFill];
  iPreviewLayer.frame = CGRectMake(0, 60, [UIScreen mainScreen].bounds.size.width, [UIScreen mainScreen].bounds.size.height-160);
  [self.iCameraView.layer addSublayer:iPreviewLayer];
  
  [iSession startRunning];
  
  
}

点击按钮拍照:

//拍照
-(void)takePictures{
  AVCaptureConnection *connection = [iStillImageOutput connectionWithMediaType:AVMediaTypeVideo];
  if (!connection) {
    NSLog(@"失败");
    return;
  }
  //设置焦距
  [connection setVideoScaleAndCropFactor:1];
  
  [iStillImageOutput captureStillImageAsynchronouslyFromConnection:connection completionHandler:^(CMSampleBufferRef imageDataSampleBuffer, NSError *error) {
    if (imageDataSampleBuffer==NULL) {
      NSLog(@"NUll");
      return ;
    }
    
    NSData *data = [AVCaptureStillImageOutput jpegStillImageNSDataRepresentation:imageDataSampleBuffer];
    UIImage *image = [UIImage imageWithData:data];
    
    
  }];
}

image即为拍照所得图片:

设置session的AVCaptureSessionPreset属性

-(NSString *)getSessionPresetForDevice:(AVCaptureDevice *)device{
  if ([device supportsAVCaptureSessionPreset:AVCaptureSessionPreset3840x2160]) {
    return AVCaptureSessionPreset3840x2160;
  } else if([device supportsAVCaptureSessionPreset:AVCaptureSessionPreset1920x1080]){
    return AVCaptureSessionPreset1920x1080;
  } else if ([device supportsAVCaptureSessionPreset:AVCaptureSessionPreset1280x720]){
    return AVCaptureSessionPreset1280x720;
  } else if ([device supportsAVCaptureSessionPreset:AVCaptureSessionPreset640x480]){
    return AVCaptureSessionPreset640x480;
  } else if ([device supportsAVCaptureSessionPreset:AVCaptureSessionPreset352x288]){
    return AVCaptureSessionPreset352x288;
  } else if ([device supportsAVCaptureSessionPreset:AVCaptureSessionPresetHigh]){
    return AVCaptureSessionPresetHigh;
  } else if ([device supportsAVCaptureSessionPreset:AVCaptureSessionPresetMedium]){
    return AVCaptureSessionPresetMedium;
  } else{
    return AVCaptureSessionPresetLow;
  }
}

设置闪光灯:

- (IBAction)iFlashBtn:(id)sender {
  
  [iDevice lockForConfiguration:nil];
  if (iDevice.flashMode == AVCaptureFlashModeOff) {
    if ([iDevice isFlashModeSupported:AVCaptureFlashModeOn]) {
      [iDevice setFlashMode:AVCaptureFlashModeOn];
      
      [self.iFlashBtn setBackgroundImage:[UIImage imageNamed:@"flashBtn"] forState:UIControlStateNormal];
    }
  } else if (iDevice.flashMode == AVCaptureFlashModeOn){
    if ([iDevice isFlashModeSupported:AVCaptureFlashModeOff]) {
      [iDevice setFlashMode:AVCaptureFlashModeOff];
      
       [self.iFlashBtn setBackgroundImage:[UIImage imageNamed:@"flashOffBtn"] forState:UIControlStateNormal];
    }
  }
  [iDevice unlockForConfiguration];
  
}

切换前置摄像头与后置摄像头:

- (IBAction)iChangeBtn:(id)sender {
  
  
  NSArray *array = [AVCaptureDevice devicesWithMediaType:AVMediaTypeVideo];
  AVCaptureDevice *newDevice = nil;
  AVCaptureDeviceInput *newDeviceInput = nil;
  
  CATransition *animation = [CATransition animation];
  animation.duration = 0.5f;
  animation.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];
  animation.type = @"oglFlip";
  
  if (iDevice.position == AVCaptureDevicePositionBack) {
    animation.subtype = kCATransitionFromLeft;
    for (AVCaptureDevice *device in array) {
      if (device.position == AVCaptureDevicePositionFront) {
        newDevice = device;
      }
    }
  } else if (iDevice.position == AVCaptureDevicePositionFront){
    animation.subtype = kCATransitionFromRight;
    for (AVCaptureDevice *device in array) {
      if (device.position == AVCaptureDevicePositionBack) {
        newDevice = device;
      }
    }
  }
  
  newDeviceInput = [AVCaptureDeviceInput deviceInputWithDevice:newDevice error:nil];
  [iPreviewLayer addAnimation:animation forKey:nil];
  if (newDeviceInput!=nil) {
    [iSession beginConfiguration];
    [iSession removeInput:iDeviceInput];
     iSession.sessionPreset = [self getSessionPresetForDevice:newDevice];
    if ([iSession canAddInput:newDeviceInput]) {
      [iSession addInput:newDeviceInput];
      iDeviceInput = newDeviceInput;
      iDevice = newDevice;
    } else {
      [iSession addInput:iDeviceInput];
    }
    [iSession commitConfiguration];
  }
  
  
}

点击屏幕对焦:

//点击屏幕对焦
-(void)focusTap:(UIGestureRecognizer *)tap{
  CGPoint tapPoint = [tap locationInView:self.view];
  
  
  float Y = tapPoint.y;
  if (Y<60 || Y>([UIScreen mainScreen].bounds.size.height-100)) {
    return;
  }
  
  [iDevice lockForConfiguration:nil];
  if ([iDevice isFocusModeSupported:AVCaptureFocusModeAutoFocus]) {
    [iDevice setFocusPointOfInterest:CGPointMake(tapPoint.x/self.view.frame.origin.x, tapPoint.y/self.view.frame.origin.y)];
    [iDevice setFocusMode:AVCaptureFocusModeAutoFocus];
  }
  [iDevice unlockForConfiguration];
  
  self.iFocusImgView.center = tapPoint;
  self.iFocusImgView.hidden = NO;
  [UIView animateWithDuration:0.3 animations:^{
    self.iFocusImgView.transform = CGAffineTransformMakeScale(1.25, 1.25);
  }completion:^(BOOL finished) {
    [UIView animateWithDuration:0.5 animations:^{
      self.iFocusImgView.transform = CGAffineTransformIdentity;
    } completion:^(BOOL finished) {
      self.iFocusImgView.hidden = YES;
    }];
  }];
}

关于视频录制可以在Demo中查看。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

相关文章

  • iOS 防键盘遮挡的实例

    iOS 防键盘遮挡的实例

    下面小编就为大家分享一篇iOS 防键盘遮挡的实例,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
    2018-01-01
  • IOS实现聊天界面底部菜单栏效果

    IOS实现聊天界面底部菜单栏效果

    本文给大家分享的是放boss直聘当中的聊天信息界面,主要思路是约束动画,实现代码比较简单,下面小编通过本文给大家分享IOS实现聊天界面底部菜单栏效果,需要的的朋友参考下吧
    2017-09-09
  • iOS模仿微信长按识别二维码的多种方式

    iOS模仿微信长按识别二维码的多种方式

    这篇文章主要介绍了iOS模仿微信长按识别二维码的两种方式,文章第二种方式是识别网页中的二维码,具体思路详解大家参考下本文
    2017-07-07
  • iOS应用开发中矢量图的使用及修改矢量图颜色的方法

    iOS应用开发中矢量图的使用及修改矢量图颜色的方法

    这篇文章主要介绍了iOS应用开发中矢量图的使用及修改矢量图颜色的方法,文中的方法是在Adobe Illustrator中绘制矢量图然后导入Xcode中使用,需要的朋友可以参考下
    2016-03-03
  • IOS 实现摇一摇的操作

    IOS 实现摇一摇的操作

    这篇文章主要介绍了IOS 实现摇一摇的操作的相关资料,需要的朋友可以参考下
    2016-10-10
  • iOS实现左右拖动抽屉效果

    iOS实现左右拖动抽屉效果

    这篇文章主要介绍了iOS实现左右拖动抽屉效果,理解ios平台类似于QQ主页面,利用触摸事件滑动touchesMoved实现的效果,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2016-02-02
  • iOS通过逆向理解Block的内存模型

    iOS通过逆向理解Block的内存模型

    自从对 iOS 的逆向初窥门径后,我也经常通过它来分析一些比较大的应用,参考一下这些应用中某些功能的实现。这个探索的过程乐趣多多,不仅能满足自己对未知的好奇心,还经常能发现一些意外的惊喜。这篇文章主要介绍了iOS通过逆向如何深入理解Block内存模型的相关资料。
    2017-01-01
  • iOS开发避免安全隐患的要点总结

    iOS开发避免安全隐患的要点总结

    在本篇文章里小编给各位整理了关于iOS开发如何避免安全隐患的知识点总结,需要的朋友们学习下。
    2019-07-07
  • iOS 中Swift仿微信添加提示小红点功能(无数字)

    iOS 中Swift仿微信添加提示小红点功能(无数字)

    这篇文章主要介绍了iOS 中Swift仿微信添加提示小红点功能(无数字),非常不错,具有参考借鉴价值,需要的朋友可以参考下
    2017-05-05
  • 使用UItableview在iOS应用开发中实现好友列表功能

    使用UItableview在iOS应用开发中实现好友列表功能

    这篇文章主要介绍了使用UItableview在iOS应用开发中实现一个好友列表功能的方法,代码基于传统的Objective-C,需要的朋友可以参考下
    2015-12-12

最新评论