如果您的App里需要获得由系统自带的照相机、摄像机和录音软件所生成的文件。可以借鉴以下代码来调用iPhone摄像头拍照或者摄像的功能,并把获得的数据直接写入到文件。
//这一段是,点击一个takePicture按钮的操作.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
- (IBAction)takePicture:(id)sender {
UIImagePickerController *picker = [[UIImagePickerController alloc] init];
if
([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypeCamera]) {
picker.sourceType = UIImagePickerControllerSourceTypeCamera;
NSArray *temp_MediaTypes = [UIImagePickerController availableMediaTypesForSourceType:picker.sourceType];
picker.mediaTypes = temp_MediaTypes;
picker.delegate = self;
picker.allowsImageEditing = YES;
}
[self presentModalViewController:picker animated:YES];
[picker release];
}
|
//下面两个函数是遵守 UIImagePickerControllerDelegate这个协议所实现的类.这样就能够完整的实现,获取照片或者视频,然后写入文件的过程.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
- (
void
)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info
{
NSString *mediaType = [info objectForKey:UIImagePickerControllerMediaType];
BOOL
success;
NSFileManager *fileManager = [NSFileManager defaultManager];
NSError *error;
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
if
([mediaType isEqualToString:@
"public.image"
]){
UIImage *image = [info objectForKey:@
"UIImagePickerControllerEditedImage"
];
; NSLog(@“found an image”);
NSString *imageFile = [documentsDirectory stringByAppendingPathComponent:@
"temp.jpg"
];
; NSLog(@“%@”, ,imageFile);
success = [fileManager fileExistsAtPath:imageFile];
if
(success) {
success = [fileManager removeItemAtPath:imageFile error:>error];
}
imageView.image = image;
[UIImageJPEGRepresentation(image, 1.0f) writeToFile:imageFile atomically:YES];
//SETIMAGE(image);
//CFShow([[NSFileManager defaultManager] directoryContentsAtPath:[NSHomeDirectory() stringByAppendingString:@"/Documents"]]);
; }
else
if
([mediaType isEqualToString:@
"public.movie"
]){
NSURL *videoURL = [info objectForKey:UIImagePickerControllerMediaURL];
NSLog(@“%@”, ,videoURL);
NSLog(@“found a video”);
NSData *videoData = [NSData dataWithContentsOfURL:videoURL];
/****************************************/
NSString *videoFile = [documentsDirectory stringByAppendingPathComponent:@
"temp.mov"
];
; NSLog(@“%@”, ,videoFile);
success = [fileManager fileExistsAtPath:videoFile];
if
(success) {
success = [fileManager removeItemAtPath:videoFile error:>error];
}
[videoData writeToFile:videoFile atomically:YES];
//CFShow([[NSFileManager defaultManager] directoryContentsAtPath:[NSHomeDirectory() stringByAppendingString:@"/Documents"]]);
;
//NSLog(videoURL);
}
[picker dismissModalViewControllerAnimated:YES];
}
- (
void
)imagePickerControllerDidCancel:(UIImagePickerController *)picker {
[picker dismissModalViewControllerAnimated:YES];
}
|
转载自 DEVDIV博客