首页 > 其他 > 详细

截取图片

时间:2015-05-10 23:47:09      阅读:197      评论: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
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!