HTML5   发布时间:2022-04-27  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了iOS 10自定义相机功能大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。

本文实例为大家分享了iOS 10自定义相机功能的具体代码,供大家参,具体内容如下

直接上代码

//
// TGCameraVC.swift
// TGPhotoPicker
//
// Created by targetcloud on 2017/7/25.
// Copyright © 2017年 targetcloud. All rights reserved.
//

import UIKit
import AVFoundation
import Photos

@available(iOS 10.0,*)
class TGCameraVC: UIViewController {

 var callBACkPicutureData: ((Data?) -> ())?

 private var device: AVCaptureDevice?
 private var input: AVCaptureDeviceInput?
 private var imageOutput: AVCapturePhotoOutput?
 private var session: AVCaptureSession?
 private var previewLayer: AVCaptureVideoPreviewLayer?
 fileprivate var showImageContainerView: UIView?
 fileprivate var showImageView: UIImageView?
 fileprivate var picData: Data?
 private var flashMode: AVCaptureFlashMode = .auto
 private weak var flashButton: UIButton?

 override func viewDidLoad() {
  super.viewDidLoad()

  setupCamera()
  setupUI()

  if #available(iOS 9.0,*) {
   let isVCBased = Bundle.main.infoDictionary?["UIViewControllerBasedStatusBarAppearance"] as? Bool ?? false
   if !isVCBased{
    UIApplication.shared.setStatusBarHidden(false,with: .nonE)
   }
  }else {
   UIApplication.shared.statusBarStyle = .Lightcontent
   UIApplication.shared.setStatusBarHidden(false,with: .nonE)
  }
 }

 override var prefeRSStatusBarHidden: Bool{
  return false
 }

 override var preferredStatusBarStyle: UIStatusBarStyle {
  return .Lightcontent
 }

 private func setupCamera() {
  AVCaptureDevice.requestAccess(forMediaType: AVMediaTypeVideo) { success in
   if !success {
    let alertVC = UIAlertController(title: TGPhotoPickerConfig.shared.cameraUsage,message: TGPhotoPickerConfig.shared.cameraUsageTip,preferredStyle: .actionSheet)
    alertVC.addAction(UIAlertAction(title: TGPhotoPickerConfig.shared.confirmtitle,style: .default,handler: nil))
    self.present(alertVC,animated: true,completion: nil)
   }
  }
  device = cameraWithPosistion(.BACk)
  input = try? AVCaptureDeviceInput(device: devicE)
  guard input != nil else {
   return
  }

  imageOutput = AVCapturePhotoOutput()
  session = AVCaptureSession()
  session?.beginConfiguration()
  session?.sessionPreset = TGPhotoPickerConfig.shared.sessionPreset
  if session!.canAddInput(input) {
   session!.addInput(input)
  }
  if session!.canAddOutput(imageOutput) {
   session!.addOutput(imageOutput)
  }
  previewLayer = AVCaptureVideoPreviewLayer(session: session)
  previewLayer?.frame = view.bounds
  previewLayer?.videoGravity = TGPhotoPickerConfig.shared.videoGravity
  view.layer.addSublayer(previewLayer!)
  session?.commitConfiguration()
  session?.startRunning()
 }

 private func cameraWithPosistion(_ position: AVCaptureDevicePosition) -> AVCaptureDevice {
  let type = AVCaptureDeviCEType(rawValue: TGPhotoPickerConfig.shared.captureDeviCEType.rawvalue)
  return AVCaptureDevice.defaultDevice(withDeviCEType: type,mediaType: AVMediaTypeVideo,position: position)
 }

 private func setupUI() {
  let takeButton = UIButton(frame: CGRect(x: 0,y: 0,width: TGPhotoPickerConfig.shared.takeWH,height: TGPhotoPickerConfig.shared.takeWH))
  takeButton.center = CGPoint(x: UIScreen.main.bounds.width / 2,y: UIScreen.main.bounds.height - TGPhotoPickerConfig.shared.buttonEdge.bottom)
  takeButton.setImage(UIImage.size(width: TGPhotoPickerConfig.shared.takeWH,height: TGPhotoPickerConfig.shared.takeWH).border(width: 3).border(color: .whitE).color(.clear).corner(radius: TGPhotoPickerConfig.shared.takeWH / 2).image +
   UIImage.size(width: TGPhotoPickerConfig.shared.takeWH - 10,height: TGPhotoPickerConfig.shared.takeWH - 10).color(UIColor(white: 0.95,alpha: 1) ).corner(radius: (TGPhotoPickerConfig.shared.takeWH - 10) / 2).image,for: .normal)
  takeButton.setImage(UIImage.size(width: TGPhotoPickerConfig.shared.takeWH,height: TGPhotoPickerConfig.shared.takeWH - 10).color(UIColor(white: 0.8,for: .highlighted)
  takeButton.addTarget(self,action: #SELEctor(takePhotoAction),for: .touchUpInsidE)
  view.addSubview(takeButton)

  let cameraChangeButton = UIButton(frame: CGRect(x: 0,width: TGPhotoPickerConfig.shared.takeWH * 0.6,height: TGPhotoPickerConfig.shared.takeWH * 0.6))
  cameraChangeButton.setImage(TGPhotoPickerConfig.getImageNo2x3xSuffix("camera"),for: .normal)
  cameraChangeButton.center = CGPoint(x: UIScreen.main.bounds.width - TGPhotoPickerConfig.shared.buttonEdge.right,y: takeButton.center.y)
  cameraChangeButton.addTarget(self,action: #SELEctor(changeCameraPositionAction),for: .touchUpInsidE)
  cameraChangeButton.contentMode = .scaleAspectFit
  view.addSubview(cameraChangeButton)

  let flashChangeButton = UIButton(frame: CGRect(x: 0,width: TGPhotoPickerConfig.shared.takeWH * 0.5,height: TGPhotoPickerConfig.shared.takeWH * 0.5))
  flashChangeButton.center = CGPoint(x: cameraChangeButton.center.x,y: TGPhotoPickerConfig.shared.buttonEdge.top)
  flashChangeButton.setImage(TGPhotoPickerConfig.getImageNo2x3xSuffix("flashauto"),for: .normal)
  flashChangeButton.addTarget(self,action: #SELEctor(flashChangeAction),for: .touchUpInsidE)
  flashChangeButton.contentMode = .scaleAspectFit
  flashButton = flashChangeButton
  view.addSubview(flashChangeButton)

  let BACkButton = UIButton(frame: CGRect(x: 0,width: TGPhotoPickerConfig.shared.takeWH * 0.4,height: TGPhotoPickerConfig.shared.takeWH * 0.4))
  BACkButton.center = CGPoint(x: TGPhotoPickerConfig.shared.buttonEdge.left,y: flashChangeButton.center.y)
  BACkButton.setImage(UIImage.size(width: TGPhotoPickerConfig.shared.takeWH * 0.4,height: TGPhotoPickerConfig.shared.takeWH * 0.4)
   .corner(radius: TGPhotoPickerConfig.shared.takeWH * 0.2)
   .color(.clear)
   .border(color: UIColor.white.withAlphaComponent(0.7))
   .border(width: TGPhotoPickerConfig.shared.isShowBorder ? TGPhotoPickerConfig.shared.checkBoxLineW : 0)
   .image
   .with({ context in
    context.setLineCap(.round)
    UIColor.white.setstroke()
    context.setLineWidth(TGPhotoPickerConfig.shared.checkBoxLineW)
    let WH = TGPhotoPickerConfig.shared.takeWH * 0.4
    context.move(to: CGPoint(x: WH * 0.6,y: WH * 0.2))
    context.addLine(to: CGPoint(x: WH * 0.35,y: WH * 0.5))
    context.move(to: CGPoint(x: WH * 0.35,y: WH * 0.5))
    context.addLine(to: CGPoint(x: WH * 0.6,y: WH * 0.8))
    context.strokePath()
   }),for: .normal)
  BACkButton.contentMode = .scaleAspectFit
  BACkButton.addTarget(self,action: #SELEctor(BACkAction),for: .touchUpInsidE)
  view.addSubview(BACkButton)

  showImageContainerView = UIView(frame: view.bounds)
  showImageContainerView?.BACkgroundColor = TGPhotoPickerConfig.shared.previewBGColor
  view.addSubview(showImageContainerView!)

  let height = showImageContainerView!.bounds.height - TGPhotoPickerConfig.shared.takeWH - TGPhotoPickerConfig.shared.buttonEdge.bottom - TGPhotoPickerConfig.shared.previewPadding * 2
  showImageView = UIImageView(frame: CGRect(x: TGPhotoPickerConfig.shared.previewPadding,y: TGPhotoPickerConfig.shared.previewPadding * 2,width: showImageContainerView!.bounds.width - 2 * TGPhotoPickerConfig.shared.previewPadding,height: height))
  showImageView?.contentMode = .scaleAspectFit
  showImageContainerView?.addSubview(showImageView!)
  showImageContainerView?.isHidden = true

  let giveupButton = createImageOperatorButton(nil,CGPoint(x: TGPhotoPickerConfig.shared.takeWH * 1.5,y: showImageContainerView!.bounds.height - TGPhotoPickerConfig.shared.takeWH * 1.5),TGPhotoPickerConfig.shared.getcheckBoxImage(true,true,.circle,TGPhotoPickerConfig.shared.takeWH * 0.7).unSELEct)
  giveupButton.addTarget(self,action: #SELEctor(giveupImageAction),for: .touchUpInsidE)
  showImageContainerView?.addSubview(giveupButton)

  let ensureButton = createImageOperatorButton(nil,CGPoint(x: showImageContainerView!.bounds.width - TGPhotoPickerConfig.shared.takeWH * 1.5,false,TGPhotoPickerConfig.shared.takeWH * 0.7).SELEct)
  ensureButton.addTarget(self,action: #SELEctor(useImageAction),for: .touchUpInsidE)
  showImageContainerView?.addSubview(ensureButton)
 }

 private func createImageOperatorButton(_ title: String?,_ center: CGPoint,_ img: UIImage?) -> UIButton {
  let btn = UIButton(frame: CGRect(x: 0,width: TGPhotoPickerConfig.shared.takeWH * 0.7,height: TGPhotoPickerConfig.shared.takeWH * 0.7))
  btn.center = center
  btn.settitle(title,for: .normal)
  btn.setImage(img,for: .normal)
  btn.contentMode = .scaleAspectFit
  return btn
 }

 @objc private func flashChangeAction() {
  switch flashMode {
  case .auto:
   flashMode = .on
   flashButton?.setImage(TGPhotoPickerConfig.getImageNo2x3xSuffix("flash"),for: .normal)
  case .on:
   flashMode = .off
   flashButton?.setImage(TGPhotoPickerConfig.getImageNo2x3xSuffix("flashno"),for: .normal)
  case .off:
   flashMode = .auto
   flashButton?.setImage(TGPhotoPickerConfig.getImageNo2x3xSuffix("flashauto"),for: .normal)
  }
 }

 @objc private func BACkAction() {
  dismiss(animated: true,completion: nil)
 }

 @objc private func takePhotoAction() {
  let connection = imageOutput?.connection(withMediaType: AVMediaTypeVideo)
  guard connection != nil else {
   return
  }
  let photoSetTings = AVCapturePhotoSetTings()
  photoSetTings.flashMode = flashMode
  imageOutput?.capturePhoto(with: photoSetTings,delegate: self)
 }

 @objc private func changeCameraPositionAction() {
  let animation = CATransition()
  animation.duration = 0.5
  animation.timingFunction = CAMediaTimingFunction(name: kCAMediaTimingFunctionEaseInEaSEOut)
  animation.type = TGPhotoPickerConfig.shared.transitionType

  let newDevice: AVCaptureDevice!
  let newInput: AVCaptureDeviceInput?
  let position = input?.device.position
  if position == .front {
   newDevice = cameraWithPosistion(.BACk)
   animation.subtype = kCATransitionFromLeft
  } else {
   newDevice = cameraWithPosistion(.front)
   animation.subtype = kCATransitionFromRight
  }
  newInput = try? AVCaptureDeviceInput(device: newDevicE)
  guard newInput != nil else{
   return
  }

  previewLayer?.add(animation,forKey: nil)

  session?.beginConfiguration()
  session?.removeInput(input)
  if session!.canAddInput(newInput) {
   session?.addInput(newInput!)
   input = newInput
  } else {
   session?.addInput(input)
  }
  session?.commitConfiguration()
 }

 @objc private func giveupImageAction() {
  showImageView?.image = UIImage()
  showImageContainerView?.isHidden = true
 }

 @objc private func useImageAction() {
  callBACkPicutureData?(picData)
  dismiss(animated: true,completion: nil)
 }
}

@available(iOS 10.0,*)
extension TGCameraVC: AVCapturePhotoCaptureDelegate {
 func capture(_ captureOutput: AVCapturePhotoOutput,didFinishProcessingPhotoSampleBuffer photoSampleBuffer: CMSampleBuffer?,previewPhotoSampleBuffer: CMSampleBuffer?,resolvedSetTings: AVCaptureResolvedPhotoSetTings,bracketSetTings: AVCaptureBracketedStillImageSetTings?,error: Error?) {
  if error != nil {
   print("error = \(String(describing: error?.localizedDescription))")
  } else {
   if let imageData = AVCapturePhotoOutput.jpegPhotoDataRepresentation(forJPEGSampleBuffer: photoSampleBuffer!,previewPhotoSampleBuffer: previewPhotoSampleBuffer){
    picData = imageData
    showImageContainerView?.isHidden = false
    showImageView?.image = UIImage(data: imageData)
    if TGPhotoPickerConfig.shared.saveImageToPhotoAlbum{
     self.saveImageToPhotoAlbum(UIImage(data: imageData)!)
    }
   }
  }
 }

 fileprivate func saveImageToPhotoAlbum(_ savedImage:UIImagE){
  UIImageWriteToSavedPhotosAlbum(savedImage,self,#SELEctor(imageDidFinishSavingWithErrorContexTinfo),nil)
 }

 @objc fileprivate func imageDidFinishSavingWithErrorContexTinfo(image:UIImage,error:NSError?,contexTinfo:UnsafeMutableRawPointer?){
  if canUseAlbum(){
   let msg = (error != nil) ? TGPhotoPickerConfig.shared.saveImageFailTip : TGPhotoPickerConfig.shared.saveImagesuccessTip
   let alert = UIAlertView(title: TGPhotoPickerConfig.shared.saveImageTip,message: msg,delegate: self,cancelButtontitle: TGPhotoPickerConfig.shared.confirmtitlE)
   alert.show()
  }
 }

 fileprivate func canUseAlbum()-> Bool{
  if PHPhotoLibrary.authorizationStatus() != PHAuthorizationStatus.authorized {
   let alertView = UIAlertView(title: TGPhotoPickerConfig.shared.PhotoLibraryUsage,message: TGPhotoPickerConfig.shared.PhotoLibraryUsageTip,delegate: nil,cancelButtontitle: TGPhotoPickerConfig.shared.confirmtitle,otherButtontitles: TGPhotoPickerConfig.shared.canceltitlE)
   alertView.tag = TGPhotoPickerConfig.shared.alertViewTag
   alertView.show()
   return false
  }else{
   return true
  }
 }
}

效果如下

iOS 10自定义相机功能

完整使用DEMO见:点击打开链接

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

大佬总结

以上是大佬教程为你收集整理的iOS 10自定义相机功能全部内容,希望文章能够帮你解决iOS 10自定义相机功能所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。
标签:ios