iOS截屏screenshot(屏幕截屏及scrollView或tableView的全部截屏)

1、1. 截取屏幕尺寸大小的图片并保存至相册

保存至相册只需将方法saveImage中的代码替换即可

UIGraphicsBeginImageContextWithOptions(self.view.bounds.size, YES, 0.0);

[self.view.layer renderInContext:UIGraphicsGetCurrentContext()];

UIImage *image = UIGraphicsGetImageFromCurrentImageContext();

UIGraphicsEndImageContext();

2 2. scrollView或tableView的全部截屏并保存至相册

- (void)saveImage {

    UIImage* viewImage = nil;

    UITableView *scrollView = self.tableView;

    UIGraphicsBeginImageContextWithOptions(scrollView.contentSize, scrollView.opaque, 0.0);

    {

        CGPoint savedContentOffset = scrollView.contentOffset;

        CGRect savedFrame = scrollView.frame;

        

        scrollView.contentOffset = CGPointZero;

        scrollView.frame = CGRectMake(0, 0, scrollView.contentSize.width, scrollView.contentSize.height);

        

        [scrollView.layer renderInContext: UIGraphicsGetCurrentContext()];

        viewImage = UIGraphicsGetImageFromCurrentImageContext();

        

        scrollView.contentOffset = savedContentOffset;

        scrollView.frame = savedFrame;

    }

    UIGraphicsEndImageContext();

    

    [self saveImageToPhotos:viewImage];

}

- (void)saveImageToPhotos:(UIImage*)savedImage {

    UIImageWriteToSavedPhotosAlbum(savedImage, self, @selector(image:didFinishSavingWithError:contextInfo:), NULL);

}

 

- (void)image: (UIImage *) image didFinishSavingWithError: (NSError *) error contextInfo: (void *) contextInfo {

    NSString *msg = nil ;

    if(error != NULL){

        msg = @"保存图片失败" ;

    }else{

        msg = @"保存图片成功" ;

    }

    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"保存图片结果提示"

                                                    message:msg

                                                   delegate:self

                                          cancelButtonTitle:@"确定"

                                          otherButtonTitles:nil];

    [alert show];

}

screenshot

+ (UIImage *)screenshot
{
    CGSize imageSize = CGSizeZero;

    UIInterfaceOrientation orientation = [UIApplication sharedApplication].statusBarOrientation;
    if (UIInterfaceOrientationIsPortrait(orientation)) {
        imageSize = [UIScreen mainScreen].bounds.size;
    } else {
        imageSize = CGSizeMake([UIScreen mainScreen].bounds.size.height, [UIScreen mainScreen].bounds.size.width);
    }

    UIGraphicsBeginImageContextWithOptions(imageSize, NO, 0);
    CGContextRef context = UIGraphicsGetCurrentContext();
    for (UIWindow *window in [[UIApplication sharedApplication] windows]) {
        CGContextSaveGState(context);
        CGContextTranslateCTM(context, window.center.x, window.center.y);
        CGContextConcatCTM(context, window.transform);
        CGContextTranslateCTM(context, -window.bounds.size.width * window.layer.anchorPoint.x, -window.bounds.size.height * window.layer.anchorPoint.y);
        if (orientation == UIInterfaceOrientationLandscapeLeft) {
            CGContextRotateCTM(context, M_PI_2);
            CGContextTranslateCTM(context, 0, -imageSize.width);
        } else if (orientation == UIInterfaceOrientationLandscapeRight) {
            CGContextRotateCTM(context, -M_PI_2);
            CGContextTranslateCTM(context, -imageSize.height, 0);
        } else if (orientation == UIInterfaceOrientationPortraitUpsideDown) {
            CGContextRotateCTM(context, M_PI);
            CGContextTranslateCTM(context, -imageSize.width, -imageSize.height);
        }
        if ([window respondsToSelector:@selector(drawViewHierarchyInRect:afterScreenUpdates:)]) {
            [window drawViewHierarchyInRect:window.bounds afterScreenUpdates:YES];
        } else {
            [window.layer renderInContext:context];
        }
        CGContextRestoreGState(context);
    }

    UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    return image;
}

swift screenshot

class func screenshot() -> UIImage {
    var imageSize = CGSizeZero

    let orientation = UIApplication.sharedApplication().statusBarOrientation
    if UIInterfaceOrientationIsPortrait(orientation) {
        imageSize = UIScreen.mainScreen().bounds.size
    } else {
        imageSize = CGSize(width: UIScreen.mainScreen().bounds.size.height, height: UIScreen.mainScreen().bounds.size.width)
    }

    UIGraphicsBeginImageContextWithOptions(imageSize, false, 0)
    let context = UIGraphicsGetCurrentContext()
    for window in UIApplication.sharedApplication().windows {
        CGContextSaveGState(context)
        CGContextTranslateCTM(context, window.center.x, window.center.y)
        CGContextConcatCTM(context, window.transform)
        CGContextTranslateCTM(context, -window.bounds.size.width * window.layer.anchorPoint.x, -window.bounds.size.height * window.layer.anchorPoint.y)
        if orientation == .LandscapeLeft {
            CGContextRotateCTM(context, CGFloat(M_PI_2))
            CGContextTranslateCTM(context, 0, -imageSize.width)
        } else if orientation == .LandscapeRight {
            CGContextRotateCTM(context, -CGFloat(M_PI_2))
            CGContextTranslateCTM(context, -imageSize.height, 0)
        } else if orientation == .PortraitUpsideDown {
            CGContextRotateCTM(context, CGFloat(M_PI))
            CGContextTranslateCTM(context, -imageSize.width, -imageSize.height)
        }
        if window.respondsToSelector("drawViewHierarchyInRect:afterScreenUpdates:") {
            window.drawViewHierarchyInRect(window.bounds, afterScreenUpdates: true)
        } else if let context = context {
            window.layer.renderInContext(context)
        }
        CGContextRestoreGState(context)
    }

    let image = UIGraphicsGetImageFromCurrentImageContext()
    UIGraphicsEndImageContext()
    return image
}

iOS应用内截图代码

有待改写工具类?????

第一种方法(截全屏幕)

下面这段代码可以将当前屏幕显示的内容截图放置相册中,需要导入

-(void)viewDidAppear:(BOOL)animated

 

{

 

[superviewDidAppear:animated];

 

self.view.backgroundColor= [UIColorgreenColor];

 

UIWindow*screenWindow = [[UIApplicationsharedApplication]keyWindow];

 

UIGraphicsBeginImageContext(screenWindow.frame.size);

 

[screenWindow.layerrenderInContext:UIGraphicsGetCurrentContext()];

 

UIImage* viewImage =UIGraphicsGetImageFromCurrentImageContext();

 

UIGraphicsEndImageContext();

 

UIImageWriteToSavedPhotosAlbum(viewImage,nil,nil,nil);

 

}

第二种方法(自定义截图区域)

pragmamark -=====自定义截屏位置大小的逻辑代码=====-

staticintScreenshotIndex=0; //

-(void)ScreenShot{

 

//这里因为我需要全屏接图所以直接改了,宏定义iPadWithd为1024,iPadHeight为768,

 

//UIGraphicsBeginImageContextWithOptions(CGSizeMake(640, 960), YES, 0);//设置截屏大小

 

UIGraphicsBeginImageContextWithOptions(CGSizeMake(iPadWidth, iPadHeight), YES,0);//设置截屏大小

 

[[self.view layer] renderInContext:UIGraphicsGetCurrentContext()];

 

UIImage *viewImage =UIGraphicsGetImageFromCurrentImageContext();

 

UIGraphicsEndImageContext();

 

CGImageRef imageRef =viewImage.CGImage;

 

//CGRect rect = CGRectMake(166, 211, 426, 320);//这里可以设置想要截图的区域

 

CGRect rect = CGRectMake(0,0, iPadWidth, iPadHeight);//这里可以设置想要截图的区域

 

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",ScreenshotIndex];

 

NSString *savedImagePath =[documentsDirectory stringByAppendingPathComponent:pictureName];

 

NSLog(@"截屏路径打印: %@", savedImagePath);

 

//这里我将路径设置为一个全局String,这里做的不好,我自己是为了用而已,希望大家别这么写

 

[self SetPickPath:savedImagePath];

 

[imageViewData writeToFile:savedImagePath atomically:YES];//保存照片到沙盒目录

 

CGImageRelease(imageRefRect);

 

ScreenshotIndex++;

 

}

//设置路径

- (void)SetPickPath:(NSString *)PickImage {

 

_ScreenshotsPickPath =PickImage;

 

}


//获取路径<这里我就直接用于邮件推送的代码中去了,能达到效果,但肯定有更好的写法>

- (NSString *)GetPickPath {
return_ScreenshotsPickPath;

}

IOS获取设备屏幕代码(截屏)

-(void) screenShot{

    

  UIGraphicsBeginImageContext(self.bounds.size);   //self为需要截屏的UI控件 即通过改变此参数可以截取特定的UI控件 

  [self.layer renderInContext:UIGraphicsGetCurrentContext()];    

  UIImage *image= UIGraphicsGetImageFromCurrentImageContext();

  UIGraphicsEndImageContext();    

  NSLog(@"image:%@",image); //至此已拿到image

 

  UIImageView *imaView = [[UIImageView alloc] initWithImage:image];   

  imaView.frame = CGRectMake(0, 700, 500, 500);    

  [self addSubview:imaView];    

    

  UIImageWriteToSavedPhotosAlbum(image, self, nil, nil);//把图片保存在本地

}


最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 159,835评论 4 364
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 67,598评论 1 295
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 109,569评论 0 244
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 44,159评论 0 213
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 52,533评论 3 287
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 40,710评论 1 222
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 31,923评论 2 313
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 30,674评论 0 203
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 34,421评论 1 246
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 30,622评论 2 245
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 32,115评论 1 260
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 28,428评论 2 254
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 33,114评论 3 238
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 26,097评论 0 8
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 26,875评论 0 197
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 35,753评论 2 276
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 35,649评论 2 271

推荐阅读更多精彩内容