码迷,mamicode.com
首页 > 其他好文 > 详细

截取图片

时间:2015-05-10 23:49:04      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:

[objc] view plaincopy

    // 从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;  
    }  

 

截取图片

标签:

原文地址:http://www.cnblogs.com/keyan1102/p/4493209.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!