iOS 屏幕截图

  1. // 从view上截图  
  2. - (UIImage *)getImage {  
  3.       
  4.     UIGraphicsBeginImageContextWithOptions(CGSizeMake(150150), NO1.0);  //NO,YES 控制是否透明  
  5.     [self.view.layer renderInContext:UIGraphicsGetCurrentContext()];  
  6.     UIImage *image = UIGraphicsGetImageFromCurrentImageContext();  
  7.     UIGraphicsEndImageContext();  
  8.     // 生成后的image  
  9.       
  10.     return image;  
  11. }  
  12.   
  13. // 根据给定得图片,从其指定区域截取一张新得图片  
  14. -(UIImage *)getImageFromImage{  
  15.     //大图bigImage  
  16.     //定义myImageRect,截图的区域  
  17.     CGRect myImageRect = CGRectMake(7010150150);  
  18.     UIImage* bigImage= [UIImage imageNamed:@"mm.jpg"];  
  19.     CGImageRef imageRef = bigImage.CGImage;  
  20.     CGImageRef subImageRef = CGImageCreateWithImageInRect(imageRef, myImageRect);  
  21.     CGSize size;  
  22.     size.width = 150;  
  23.     size.height = 150;  
  24.     UIGraphicsBeginImageContext(size);  
  25.     CGContextRef context = UIGraphicsGetCurrentContext();  
  26.     CGContextDrawImage(context, myImageRect, subImageRef);  
  27.     UIImage* smallImage = [UIImage imageWithCGImage:subImageRef];  
  28.     UIGraphicsEndImageContext();  
  29.     return smallImage;  
  30. }  
  31. //在自定义view上截图
  32. - (void)drawRect:(CGRect)rect {


        CGContextRef ctx=UIGraphicsGetCurrentContext();

    //可以截取不同的形状根据下面画的图形而定

        CGContextAddRect(ctx, CGRectMake(100, 0, 375 - 100, 667));

        CGContextClip(ctx);

        CGContextFillPath(ctx);

        UIImage *image = [UIImage imageNamed:@"up.jpg"];

    //    UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 375, 667)];

    //    imageView.image = image;

    //    [self addSubview:imageView];

        [image drawAtPoint:CGPointMake(0, 0)];

    }



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值