Swift调用摄像头拍照或者录制视频

By | 2015年6月7日

开启摄像头拍摄视频或者照片,需要使用UIKit中的UIImagePickerController类。

直接用代码+注释方式来看吧:

//开启摄像头
@IBAction func btnRecord(sender: AnyObject) {

    //第一步,检测摄像头是否可用
    if SCCamera.isAvailable(){

        //根据指定的SourceType来获取该SourceType下可以用的媒体类型,返回的是一个数组
        let mediaTypeArr:NSArray = UIImagePickerController.availableMediaTypesForSourceType(UIImagePickerControllerSourceType.Camera)!

        //判断数组中是否存在kUTTypeMovie和kUTTypeImage类型(需要import MobileCoreServices)
        //kUTTypeMovie 表示可以录制带有音频的视频
        //kUTTypeImage 表示可以拍摄照片
        if mediaTypeArr.containsObject(kUTTypeMovie) && mediaTypeArr.containsObject(kUTTypeImage){

            //创建一个UIImagePickerController
            var pickerControl = UIImagePickerController()
            //必须,第一步,设置SourceType,Camera表示相机
            pickerControl.sourceType = UIImagePickerControllerSourceType.Camera
            //必须,第二步,设置相机的View中可以使用的媒体类型,这里直接使用上面的mediaTypeArr,它包含了视频和图像
            pickerControl.mediaTypes = mediaTypeArr as [AnyObject]
            //必须,第三步,设置delegate:UIImagePickerControllerDelegate,UINavigationControllerDelegate
            //这两个必须都写上,可以进入头文件查看到
            pickerControl.delegate = self

            //可选,视频最长的录制时间,这里是10秒,默认为10分钟(600秒)
            pickerControl.videoMaximumDuration = 10
            //可选,设置视频的质量,默认就是TypeMedium
            pickerControl.videoQuality = UIImagePickerControllerQualityType.TypeMedium
            //设置视频或者图片拍摄好后,是否能编辑,默认为false不能编辑
            pickerControl.allowsEditing = true

            //必须,第四步,显示
            self.presentViewController(pickerControl, animated: true, completion: nil)
        }
    }else{
        SCMessageBox.show(self, title: "提示", contentMsg: "当前设备不支持摄像头", buttonString: "确认", blockHandler: nil)
    }
}

代码中的这2个类:SCCamera和SCMessageBox是我自己写的一个封装,把这些常用的操作封装成一个FrameWork,便于项目中快速使用,目前还在逐渐的完善中,后续会放在Github上,请关注我的博客。

这里这2个方法实现如下:

public class SCCamera{

    /**
    当前设备的相机是否可用

    :returns: 可用返回true,否则返回false
    */
    public class func isAvailable()->Bool{
        return UIImagePickerController.isSourceTypeAvailable(UIImagePickerControllerSourceType.Camera)
    }
}
public typealias SCMessageBoxStyle = UIAlertControllerStyle
public typealias SCMessageBoxActionStyle = UIAlertActionStyle

public class SCMessageBox{

    /**
    获取UIAlertController对象

    :param: title      标题提示内容
    :param: contentMsg 主要信息内容
    :param: boxStyle   窗口样式:Alert或者ActionSheet

    :returns: <#return value description#>
    */
    public class func boxController(title:String,contentMsg:String,boxStyle:SCMessageBoxStyle)->UIAlertController{
        return UIAlertController(title: title, message: contentMsg, preferredStyle: boxStyle)
    }

    /**
    获取指定的UIAlertAction对象

    :param: buttonString   按钮文本内容
    :param: boxActionStyle 按钮类型
    :param: blockHandler   点击按钮后的事件回调方法

    :returns: <#return value description#>
    */
    public class func boxAction(buttonString:String,boxActionStyle:SCMessageBoxActionStyle,blockHandler:((UIAlertAction!) -> Void)!) -> UIAlertAction{
        return UIAlertAction(title: buttonString, style: boxActionStyle, handler: blockHandler)
    }

    /**
    快速显示一个Alert弹窗

    :param: viewControl  需要显示的页面(常用Self表示当前viewControl)
    :param: title        弹窗的标题文本内容
    :param: contentMsg   弹窗的主要内容
    :param: buttonString 按钮的文本内容
    :param: blockHandler 按钮点击事件的回调方法
    */
    public class func show(viewControl:UIViewController,title:String,contentMsg:String,buttonString:String,blockHandler:((UIAlertAction!) -> Void)!){
        let control = self.boxController(title, contentMsg: contentMsg, boxStyle: SCMessageBoxStyle.Alert)
        let action  = self.boxAction(buttonString, boxActionStyle: SCMessageBoxActionStyle.Default, blockHandler: blockHandler)
        control.addAction(action)
        viewControl.presentViewController(control, animated: true, completion: nil)
    }
}

到目前为止,我们已经可以开启摄像头进行视频和图片的拍摄了,但是还没有定义完成后的事件,我们该如何保存视频和图片呢?

上面代码中,配置了UIImagePickerController的delegate,那么我们就要实现相应的方法:

//拍摄完成(用户点击了Done按钮)
func imagePickerController(picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [NSObject : AnyObject]){

    //info是一个字典,包含了拍摄结果的各种信息
    let infodic:NSDictionary = info as NSDictionary

    //获取键值UIImagePickerControllerMediaType的值,表示了当前处理的是视频还是图片
    let mediaType = infodic["UIImagePickerControllerMediaType"] as! String

    //如果是视频的话
    if mediaType == kUTTypeMovie as String{
        saveMovie(infodic)
    }
    //如果是图片
    else if mediaType == kUTTypeImage as String{
        savePicture(infodic)
    }
    //最后,dismiss拍摄窗口
    picker.dismissViewControllerAnimated(true, completion: nil)
}

//保存视频方法
func saveMovie(infodic:NSDictionary){
    //系统保存到tmp目录里的视频文件的路径
    let mediaUrl: NSURL = infodic[UIImagePickerControllerMediaURL] as! NSURL
    let videoPath = mediaUrl.path

    //如果视频文件可以保存的话
    if UIVideoAtPathIsCompatibleWithSavedPhotosAlbum(videoPath){
        //用这个方法来保存视频
        UISaveVideoAtPathToSavedPhotosAlbum(videoPath, nil, nil, nil)
    }
}
//保存图片方法
func savePicture(infodic:NSDictionary){

    //拍摄的原始图片
    let originalImage:UIImage?
    //用户修改后的图片(如果allowsEditing设置为True,那么用户可以编辑)
    let editedImage:UIImage?
    //最终要保存的图片
    let savedImage:UIImage?

    //从字典中获取键值UIImagePickerControllerEditedImage的值,它直接包含了图片数据
    editedImage = infodic["UIImagePickerControllerEditedImage"] as? UIImage
    //从字典中获取键值UIImagePickerControllerOriginalImage的值,它直接包含了图片数据
    originalImage = infodic["UIImagePickerControllerOriginalImage"] as? UIImage

    //判断是否有编辑图片,如果有就使用编辑的图片
    if (editedImage != nil){
        savedImage = editedImage
    }else{
        savedImage = originalImage
    }

    //保存图片到用户的相机胶卷中
    UIImageWriteToSavedPhotosAlbum(savedImage, nil, nil, nil)
}

这里需要注意到的是,我是怎么知道infodic中有哪些键值的呢?很简单,只需要println下~下面列出了视频和图片两种类型下的字典数据:

视频:

[
 _UIImagePickerControllerVideoEditingStart: 0,
 UIImagePickerControllerMediaURL:           file:///private/var/mobile/Containers/Data/Application/73A1E385-7A25-4318-97A4-60EFE779C5A9/tmp/capture/capturedvideo.MOV,
 UIImagePickerControllerMediaType:          public.movie,
 _UIImagePickerControllerVideoEditingEnd:   10
]

图片:

[
 UIImagePickerControllerEditedImage: <UIImage: 0x170289a60> size {640, 640} orientation 0 scale 1.000000,
 UIImagePickerControllerOriginalImage: <UIImage: 0x17028ece0> size {2448, 3264} orientation 3 scale 1.000000,
 UIImagePickerControllerCropRect: NSRect: {{965, 717}, {1492, 1493}},
 UIImagePickerControllerMediaMetadata: {
    DPIHeight = 72;
    DPIWidth = 72;
    。。。
 },
 UIImagePickerControllerMediaType: public.image
]

Metadata很长,这里省略了。