iOS 截屏代码_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > iOS 截屏代码

iOS 截屏代码

 2017/10/9 17:43:10  jsonLing  程序员俱乐部  我要评论(0)
  • 摘要:-(UIImage*)getScreenPhoto{CGFloatscale=[UIScreenmainScreen].scale;NSMutableArray*images=[NSMutableArrayarray];CGSizecontentSize=self.view.size;CGSizeimageSize=CGSizeMake(contentSize.width*scale,contentSize.height*scale)
  • 标签:iOS 代码

-(UIImage*)getScreenPhoto{

    CGFloat scale = [UIScreen mainScreen].scale;

    NSMutableArray *images = [NSMutableArray array];

    

    CGSize contentSize = self.view.size;

    

    CGSize imageSize = CGSizeMake(contentSize.width * scale, contentSize.height * scale);

    

    UIGraphicsBeginImageContextWithOptions(self.view.size, NO, 0.0);

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

    UIImage *image = UIGraphicsGetImageFromCurrentImageContext();

    UIGraphicsEndImageContext();

    [images addObject:image];

    

    UIGraphicsBeginImageContext(imageSize);

    

    [images enumerateObjectsUsingBlock:^(UIImage *image, NSUInteger idx, BOOL *stop) {

        [image drawInRect:CGRectMake(0, scale * EJScreenH * idx, EJScreenW * scale, EJScreenH * scale)];

    }];

    UIImage *fullImage = UIGraphicsGetImageFromCurrentImageContext();

    

    UIGraphicsEndImageContext();

  return fullImage;

    

}

上一篇: 卫报专访谷歌CEO:公司“大” 是谷歌的弱点 下一篇: 没有下一篇了!
发表评论
用户名: 匿名