使用Quartz2D技术擦除图片

#import "ViewController.h"

 

@interface ViewController ()

@property (weak, nonatomic) IBOutlet UIImageView *imageView;

 

@end

 

@implementation ViewController

 

- (void)viewDidLoad {

    [super viewDidLoad];

    // Do any additional setup after loading the view, typically from a nib.

    

    UIPanGestureRecognizer *pan = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(pan:)];

    

    [self.view addGestureRecognizer:pan];

}

 

 

- (void)pan:(UIPanGestureRecognizer *)pan

{

    // 获取当前点

    CGPoint curP = [pan locationInView:self.view];

    

    // 获取擦除的矩形范围

    CGFloat wh = 60;

    CGFloat x = curP.x - wh * 0.5;

    CGFloat y = curP.y - wh * 0.5;

    

    CGRect rect = CGRectMake(x, y, wh, wh);

    

    // 开启上下文

    UIGraphicsBeginImageContextWithOptions(self.view.bounds.size, NO, 0);

    

    CGContextRef ctx = UIGraphicsGetCurrentContext();

    

    // 控件的layer渲染上去

    [_imageView.layer renderInContext:ctx];

    

    // 擦除图片

    CGContextClearRect(ctx, rect);

    

    // 生成一张图片

    UIImage *image = UIGraphicsGetImageFromCurrentImageContext();

    

    _imageView.image = image;

    

    // 关闭上下文

    UIGraphicsEndImageContext();

    

    

}

 

posted @   华少不思议  阅读(116)  评论(0编辑  收藏  举报
编辑推荐:
· SQL Server 内存占用高分析
· .NET Core GC计划阶段(plan_phase)底层原理浅谈
· .NET开发智能桌面机器人:用.NET IoT库编写驱动控制两个屏幕
· 用纯.NET开发并制作一个智能桌面机器人:从.NET IoT入门开始
· 一个超经典 WinForm,WPF 卡死问题的终极反思
阅读排行:
· 支付宝事故这事儿,凭什么又是程序员背锅?有没有可能是这样的...
· 在线客服系统 QPS 突破 240/秒,连接数突破 4000,日请求数接近1000万次,.NET 多
· C# 开发工具Visual Studio 介绍
· 在 Windows 10 上实现免密码 SSH 登录
· C#中如何使用异步编程
点击右上角即可分享
微信分享提示