博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
IOS获取相册中图片以及视频
阅读量:5085 次
发布时间:2019-06-13

本文共 3138 字,大约阅读时间需要 10 分钟。

          1. 有什么不足希望大家可以一起交流,废话不说了直接代码
            -(void)onUpload{    UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"" message:@"" preferredStyle:UIAlertControllerStyleActionSheet];        UIAlertAction * firstAction = [UIAlertAction actionWithTitle:@"上传图片" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {        UIImagePickerController *pickerController = [[UIImagePickerController alloc]init];        //设置选取的照片是否可编辑//        pickerController.allowsEditing = YES;        //设置相册呈现的样式        pickerController.sourceType =  UIImagePickerControllerSourceTypeSavedPhotosAlbum;//图片分组列表样式        //照片的选取样式还有以下两种              //UIImagePickerControllerSourceTypePhotoLibrary,直接全部呈现系统相册        //UIImagePickerControllerSourceTypeCamera//调取摄像头        // UIImagePickerControllerSourceTypeSavedPhotosAlbum;//图片分组列表样式                    //选择完成图片或者点击取消按钮都是通过代理来操作我们所需要的逻辑过程        pickerController.delegate = self;        //使用模态呈现相册        [self.navigationController presentViewController:pickerController animated:YES completion:nil];    }];        UIAlertAction * secondAction = [UIAlertAction actionWithTitle:@"上传视频" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {        UIImagePickerController *pickerController = [[UIImagePickerController alloc]init];        pickerController.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;        pickerController.mediaTypes =@[(NSString*)kUTTypeMovie];        pickerController.allowsEditing = NO;        pickerController.delegate = self;        [self.navigationController presentViewController:pickerController animated:YES completion:nil];        }];    [alert addAction:firstAction];    [alert addAction:secondAction];    [self presentViewController:alert animated:YES completion:nil];}
            -(void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary
            *)info{ NSLog(@"%@",info); UIImage *image = [info objectForKey:UIImagePickerControllerOriginalImage]; [picker dismissViewControllerAnimated:YES completion:nil]; NSString *mediaType = info[UIImagePickerControllerMediaType]; NSLog(@"%@",mediaType); if ([mediaType isEqualToString:(NSString*)kUTTypeImage]) { if (image!=nil) { NSURL *imageURL = [info objectForKey:UIImagePickerControllerReferenceURL]; NSLog(@"URL:%@",imageURL); NSString *fileName = [imageURL lastPathComponent]; NSData * imageData = UIImageJPEGRepresentation(image,0.1); // NSData * imageData = UIImagePNGRepresentation(image); NSLog(@"压缩到0.1的图片大小:%lu",[imageData length]);        } }else if([mediaType isEqualToString:(NSString*)kUTTypeMovie]){
            NSLog(@"进入视频环节!!!"); NSInteger offset = 1024 * 1024 *5; NSURL *URL = info[UIImagePickerControllerMediaURL]; NSString *URLStr = [NSString stringWithFormat:@"%@",URL]; NSData *file = [NSData dataWithContentsOfURL:URL]; NSLog(@"输出视频的大小:%lu",(unsigned long)[file length]);

转载于:https://www.cnblogs.com/dilz/p/7147441.html

你可能感兴趣的文章
页面中公用的全选按钮,单选按钮组件的编写
查看>>
java笔记--用ThreadLocal管理线程,Callable<V>接口实现有返回值的线程
查看>>
BZOJ 1047 HAOI2007 理想的正方形 单调队列
查看>>
各种语言推断是否是手机设备
查看>>
这个看起来有点简单!--------实验吧
查看>>
PHP count down
查看>>
JVM参数调优:Eclipse启动实践
查看>>
(旧笔记搬家)struts.xml中单独页面跳转的配置
查看>>
不定期周末福利:数据结构与算法学习书单
查看>>
strlen函数
查看>>
python的列表与shell的数组
查看>>
关于TFS2010使用常见问题
查看>>
软件工程团队作业3
查看>>
python标准库——queue模块 的queue类(单向队列)
查看>>
火狐、谷歌、IE关于document.body.scrollTop和document.documentElement.scrollTop 以及值为0的问题...
查看>>
深入理解JVM读书笔记--字节码执行引擎
查看>>
vue-搜索功能-实时监听搜索框的输入,N毫秒请求一次数据
查看>>
批处理 windows 服务的安装与卸载
查看>>
React文档翻译 (快速入门)
查看>>
nodejs fs路径
查看>>