ios截屏功能

作者: 71150ce14a00 | 来源:发表于2016-05-27 18:31 被阅读155次

/**

*截图功能

*/

-(void)screenShot{

UIGraphicsBeginImageContextWithOptions(CGSizeMake(640,960),YES,0);

//设置截屏大小

[[self.viewlayer]renderInContext:UIGraphicsGetCurrentContext()];

UIImage*viewImage =UIGraphicsGetImageFromCurrentImageContext();

UIGraphicsEndImageContext();

CGImageRefimageRef = viewImage.CGImage;

CGRectrect =CGRectMake(0,0,641,SCREHEIGHT+300);//这里可以设置想要截图的区域

CGImageRefimageRefRect =CGImageCreateWithImageInRect(imageRef, rect);

UIImage*sendImage = [[UIImagealloc]initWithCGImage:imageRefRect];

//以下为图片保存代码

UIImageWriteToSavedPhotosAlbum(sendImage,nil,nil,nil);//保存图片到照片库

NSData*imageViewData =UIImagePNGRepresentation(sendImage);

NSArray*paths =NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask,YES);

NSString*documentsDirectory = [pathsobjectAtIndex:0];

NSString*pictureName=@"screenShow.png";

NSString*savedImagePath = [documentsDirectorystringByAppendingPathComponent:pictureName];

[imageViewDatawriteToFile:savedImagePathatomically:YES];//保存照片到沙盒目录

CGImageRelease(imageRefRect);

//从手机本地加载图片

UIImage*bgImage2 = [[UIImagealloc]initWithContentsOfFile:savedImagePath];

}

关注微信公众号:

相关文章

  • iOS屏幕截图功能

    iOS7.0之前的系统,可以通过以下代码实现截屏功能。 iOS7.0之后,系统中封装了截屏的方法- (UIView...

  • iOS 截屏功能

    截屏-意见反馈 功能

  • ios截屏功能

  • ios截屏功能

    /** *截图功能 */ -(void)screenShot{ UIGraphicsBeginImageConte...

  • 针对WKWebView进行内容的截屏。

    最近项目中需要截屏分享的功能,之前也了解过iOS截屏的技术,并写了关于截屏的笔记,兴冲冲的拿着代码稍作修改,对WK...

  • flutter:截屏

    1.flutter-截屏组件 2.flutter-截屏插件 3.flutter-iOS原生截屏 iOS代码 4.获...

  • (最新)iOS截屏

    ios webview 截屏:ios截屏 前言:介绍一下截屏有很多种做法1:截当前屏幕内容2:截整个视图的所有内容...

  • ios截屏

    ios截屏

  • “监听用户截屏”弹出分享窗口

    从 iOS 7 开始,苹果提供了监听用户截屏操作的通知: 我们可以使用这个通知来做例如:截屏弹出分享窗口的功能。

  • iOS13 (三)截屏PDF长图

    在iOS13中,苹果提供了截屏选择PDF长图的功能,实现相关代码后,只需要使用截屏功能,就会发现在右边有一个"整页...

网友评论

    本文标题:ios截屏功能

    本文链接:https://www.haomeiwen.com/subject/xplfdttx.html