IOS開発のiosビデオスクリーンの実現コード
IOS開発のiosビデオスクリーンの実現コード
今は多くのビデオスクリーンソフトがあります。ここではIOSビデオスクリーンの方法を提供します。参考にしてください。
実現コード:
今は多くのビデオスクリーンソフトがあります。ここではIOSビデオスクリーンの方法を提供します。参考にしてください。
実現コード:
//
static int i=0;
-(IBAction)screenShot:(id)sender{
UIGraphicsBeginImageContextWithOptions(CGSizeMake(640, 960), YES, 0);
[[self.window layer] renderInContext:UIGraphicsGetCurrentContext()];
UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
CGImageRef imageRef = viewImage.CGImage;
CGRect rect =CGRectMake(166, 211, 426, 320);//
CGImageRef imageRefRect =CGImageCreateWithImageInRect(imageRef, rect);
UIImage *sendImage = [[UIImage alloc] initWithCGImage:imageRefRect];
UIImageWriteToSavedPhotosAlbum(sendImage, nil, nil, nil);//
NSData *imageViewData = UIImagePNGRepresentation(sendImage);
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *pictureName= [NSString stringWithFormat:@"screenShow_%d.png",i];
NSString *savedImagePath = [documentsDirectory stringByAppendingPathComponent:pictureName];
NSLog(@"%@", savedImagePath);
[imageViewData writeToFile:savedImagePath atomically:YES];//
CGImageRelease(imageRefRect);
i++;
}
読んでくれてありがとうございます。みなさんのご協力をお願いします。ありがとうございます。