如何将视频或电影文件显示到UIImagePickerController中?

时间:2010-06-08 11:36:51

标签: iphone uiimagepickercontroller

我正在使用UIImagePickerController,使用户能够选择现有照片或使用相机拍摄当时的图像。我可以使用UIImageView在我的应用程序中显示该图像。

现在我也希望将此功能用于电影。但我无法找到任何方式在我的应用程序中将所选电影显示为图像,就像照片应用程序一样。如你所知,你可以在同一个列表中看到照片和电影。

3 个答案:

答案 0 :(得分:2)

-(IBAction) selectImageSelected : (id)sender
{
    actionSheet = [[UIActionSheet alloc] initWithTitle:@"Select Image" 
                                            delegate:self
                                   cancelButtonTitle:@"Cancel"
                              destructiveButtonTitle:nil
                                   otherButtonTitles:@"Take Picture", @"Select from gallery", nil];
    [actionSheet showInView:self.parentViewController.tabBarController.view];
}

- (void)actionSheet:(UIActionSheet *)_actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex{
    if(buttonIndex==0)
    {
        if( ![UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypeCamera] )
        {
            [AlertHandler showAlertMessage:[ErrorMessages getCameraNotFoundMsg] withTitle:@"No Camera Detected"];
            return;
        }
        else
        {
            imagePicker = [[UIImagePickerController alloc] init];
            imagePicker.delegate = self;
            imagePicker.sourceType = UIImagePickerControllerSourceTypeCamera;
            [self presentModalViewController:imagePicker animated:YES];
        }
    }
    else if(buttonIndex==1)
    {
        imagePicker = [[UIImagePickerController alloc] init];
        imagePicker.delegate = self;
        imagePicker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
        imagePicker.mediaTypes =[UIImagePickerController availableMediaTypesForSourceType:imagePicker.sourceType];
        [self presentModalViewController:imagePicker animated:YES];
    }
    else
    {
        [actionSheet dismissWithClickedButtonIndex:2 animated:YES];
    }
}

- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info
{

    NSString *mediaType = [info objectForKey:UIImagePickerControllerMediaType];

    if ([mediaType isEqualToString:@"public.image"]){

        // UIImage *selectedImage = [info objectForKey:UIImagePickerControllerOriginalImage];

        UIImage *image = [info objectForKey:@"UIImagePickerControllerOriginalImage"];

        NSLog(@"found an image");

//      [UIImageJPEGRepresentation(image, 1.0f) writeToFile:[self findUniqueSavePath] atomically:YES];

//      SETIMAGE(image);

        CFShow([[NSFileManager defaultManager] directoryContentsAtPath:[NSHomeDirectory() stringByAppendingString:@"/Documents"]]);

    }

    else if ([mediaType isEqualToString:@"public.movie"]){

        NSURL *videoURL = [info objectForKey:UIImagePickerControllerMediaURL];

        NSLog(@"found a video");

        NSData *webData = [NSData dataWithContentsOfURL:videoURL];

        //NSData *video = [[NSString alloc] initWithContentsOfURL:videoURL];

//      [webData writeToFile:[self findUniqueMoviePath] atomically:YES];

        CFShow([[NSFileManager defaultManager] directoryContentsAtPath:[NSHomeDirectory() stringByAppendingString:@"/Documents"]]);
        CGSize sixzevid=CGSizeMake(imagePicker.view.bounds.size.width,imagePicker.view.bounds.size.height-100);
        UIGraphicsBeginImageContext(sixzevid);
        [imagePicker.view.layer renderInContext:UIGraphicsGetCurrentContext()];
        UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();
        UIGraphicsEndImageContext();
        eventButton.imageView.image=viewImage;
        // NSLog(videoURL);

    }

    [picker dismissModalViewControllerAnimated:YES];

}

/*
- (void)imagePickerController:(UIImagePickerController *)picker 
        didFinishPickingImage:(UIImage *)image editingInfo:(NSDictionary *)editingInfo1
{
    [imagePicker dismissModalViewControllerAnimated:YES];
    imagePicker.view.hidden = YES;
    eventButton.imageView.image = image;
    imageSelected = YES;
}
*/
- (void)imagePickerControllerDidCancel:(UIImagePickerController *)picker{
    [imagePicker dismissModalViewControllerAnimated:YES];   
    imageSelected = NO;
}

答案 1 :(得分:1)

-thumbnailImageAtTime:timeOption:MPMoviePlayerController方法看起来可能有助于您显示图片。

答案 2 :(得分:-1)

使选择器视图仅包含电影文件

替换

imagePicker.mediaTypes =[UIImagePickerController availableMediaTypesForSourceType:imagePicker.sourceType];

picker.mediaTypes = [NSArray arrayWithObject:@"public.movie"];