有人可以帮我吗?我想从通过 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 将这两个图像结合起来。所以通过给出建议来帮助我合并图像是否对我有用???
请帮忙。谢谢:)