iOS使用代码截图

2018-07-20    来源:open-open

容器云强势上线!快速搭建集群,上万Linux镜像随意使用

    // 从view上截图  
    - (UIImage *)getImage {  
          
        UIGraphicsBeginImageContextWithOptions(CGSizeMake(150, 150), NO, 1.0);  //NO,YES 控制是否透明  
        [self.view.layer renderInContext:UIGraphicsGetCurrentContext()];  
        UIImage *image = UIGraphicsGetImageFromCurrentImageContext();  
        UIGraphicsEndImageContext();  
        // 生成后的image  
          
        return image;  
    }  
      
    // 根据给定得图片,从其指定区域截取一张新得图片  
    -(UIImage *)getImageFromImage{  
        //大图bigImage  
        //定义myImageRect,截图的区域  
        CGRect myImageRect = CGRectMake(70, 10, 150, 150);  
        UIImage* bigImage= [UIImage imageNamed:@"mm.jpg"];  
        CGImageRef imageRef = bigImage.CGImage;  
        CGImageRef subImageRef = CGImageCreateWithImageInRect(imageRef, myImageRect);  
        CGSize size;  
        size.width = 150;  
        size.height = 150;  
        UIGraphicsBeginImageContext(size);  
        CGContextRef context = UIGraphicsGetCurrentContext();  
        CGContextDrawImage(context, myImageRect, subImageRef);  
        UIImage* smallImage = [UIImage imageWithCGImage:subImageRef];  
        UIGraphicsEndImageContext();  
        return smallImage;  
    } 


标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点!
本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。

上一篇:HttpClients下载与入门

下一篇: Android 倒计时工具类