4

有人可以帮我吗?我想从通过 MPMediaPlayerController 播放的视频中获取屏幕截图。到目前为止我尝试过的是: -

-(void)viewDidLoad
{
NSURL *tempFilePathURL = [NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"LMFao" ofType:@"mp4"]];
player = [[MPMoviePlayerController alloc] initWithContentURL:tempFilePathURL];
[player setControlStyle:MPMovieControlStyleFullscreen];
//Place it in subview, else it won’t work
player.view.frame = CGRectMake(0, 0, 320, 400);
[self.view addSubview:player.view];
}

-(IBAction)screenshot
{
CGRect rect = [player.view bounds];
UIGraphicsBeginImageContext(rect.size);
CGContextRef context = UIGraphicsGetCurrentContext();
[player.view.layer renderInContext:context];   
image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();

imgView = [[UIImageView alloc] initWithFrame:CGRectMake(150, 150, 100, 100)];
[imgView setImage:image];
imgView.layer.borderWidth = 2.0;
[self.view addSubview:imgView];
}

我现在得到的是:-

截屏

现在发生的事情是我的播放器按钮在 ScreenShot 中被捕获,但我的视频图像没有被捕获。我正在使用此上下文方法来捕获我的图像,因为我的视频上有一个叠加层,使用缩略图方法我无法捕获视频叠加,但我想获得带有叠加的视频图像。

编辑: 我想要的是获取此视频和绘图叠加层的屏幕截图,如图所示 视频叠加

但是我得到的是通过一种方法,我在我的屏幕截图中只得到了视频而不是覆盖,该方法是缩略图方法,我在 MPMoviePlayerController 给出的缩略图中进行缩略图,而通过第二种方法,我只在 ma 屏幕截图中得到覆盖而不是视频,即方法是上下文方法。我正在获取 rect 的上下文。现在我认为解决方案可能是 ki 将这两个图像结合起来。所以通过给出建议来帮助我合并图像是否对我有用???

请帮忙。谢谢:)

4

3 回答 3

2

你只需要在你的 mpmovieplayer 对象上调用一个方法:

- (UIImage *)thumbnailImageAtTime:(NSTimeInterval)playbackTime timeOption:(MPMovieTimeOption)option

此方法将返回一个 UIImage 对象。你要做的只是:

UIImage *thumbnail = [player thumbnailImageAtTime:1.0 timeOption:MPMovieTimeOptionNearestKeyFrame];

有关更多详细信息,请查看MPMoviePlayerController

希望这可以帮助

编辑:在您的方法中,您可以先隐藏播放器的控件,然后再捕获图像,然后再次显示控件。您可以使用controlStyleMPMoviePlayerController 的属性来实现这一点。

不确定这是您要寻找的,但这是我所理解的。如果您正在寻找不同的东西,请告诉我。

于 2012-05-14T12:39:42.587 回答
1

你可以通过这种方式合并两个图像。请看下​​面的代码..

- (UIImage*) maskImage:(UIImage *)image withMask:(UIImage *)maskImage {
    MaskView=[[UIView alloc] init];
    UIImageView *image1=[[UIImageView alloc]init];
    UIImageView *image2=[[UIImageView alloc]init];
    MaskView.frame=CGRectMake(0, 0,500,500);    
    image1.frame=CGRectMake(0,0,160, 160);  
    image2.frame=CGRectMake(60,54,40,40);
    image1.image=image;
    image2.image=maskImage;
    [MaskView addSubview:image1];
    [MaskView addSubview:image2];   

    UIGraphicsBeginImageContext(CGSizeMake(160,160));

    [MaskView.layer renderInContext:UIGraphicsGetCurrentContext()];
    UIImage *finishedPic = UIGraphicsGetImageFromCurrentImageContext(); 

    return finishedPic;
}
于 2012-05-15T09:35:11.397 回答
0

这可能会有所帮助

  - (UIImage *)thumbnailImageAtTime:(NSTimeInterval)playbackTime timeOption:(MPMovieTimeOption)option

在给定时间获取 thumbnailImage 并缩放该图像。

于 2012-05-14T12:36:08.297 回答