iOS开发-Quartz2D的基本使用(二)

通过 <iOS开发-Quartz2D的基本使用(一)> 我们能够利用Quartz2D绘制直线和曲线,并制作了一个简单的画板功能 但是真正的开发过程当中这些是远远不够的,那么我们就接着上部分内容更深层次的学习Quartz2D

矩形

//第一种
    UIBezierPath *path = [UIBezierPath bezierPathWithRect:CGRectMake(50, 50, 200, 200)];
    [path fill]; // fill就是填充
//第二种
    UIBezierPath *path = [UIBezierPath bezierPathWithRect:CGRectMake(50, 50, 200, 200)];
    [path stroke]; // stroke是渲染(描边)
fill

stroke

我们很明显的看出以上两种效果是截然不一样的.

椭圆

椭圆的绘制方式和上面的矩形的绘制方法类似
事例代码:

    //前两个参数表示的是需要绘制的图形在父视图上的位置
    //后两个参数表示的是需要绘制的图形在父视图上的大小
    UIBezierPath *path = [UIBezierPath bezierPathWithOvalInRect:CGRectMake(50, 200, 200, 100)];
    [[UIColor purpleColor]set];
    path.lineWidth = 5;
    [path fill];
  
    UIBezierPath *pat = [UIBezierPath bezierPathWithOvalInRect:CGRectMake(50, 50, 200, 100)];
    [[UIColor redColor]set];
    pat.lineWidth = 5;
    [pat stroke];

效果:


椭圆

圆角

-(void)yuanJiao{
    
    //第一个参数是CGRect参数 第二个参数是圆角度
    //[UIBezierPath bezierPathWithRoundedRect:<#(CGRect)#> cornerRadius:<#(CGFloat)#>]
    UIBezierPath *path = [UIBezierPath bezierPathWithRoundedRect:CGRectMake(50, 50, 200, 200) cornerRadius:100];
    [[UIColor greenColor]set];
    path.lineWidth = 5;

    [path stroke];
    
    UIBezierPath *path1 = [UIBezierPath bezierPathWithRoundedRect:CGRectMake(50, 300, 200, 200) cornerRadius:100];
    [[UIColor magentaColor]set];
    path.lineWidth = 5;
    [path1 fill];
}

程序运行结果


圆角

柱状图

实例代码

-(void)zhuZhuangTu{
    
    UIBezierPath *path = [UIBezierPath bezierPath];
    //横线(横轴)
    [path moveToPoint:CGPointMake(0, 300)];//起点
    [path addLineToPoint:CGPointMake(300, 300)];//终点
    
    //纵线(纵轴)
    [path moveToPoint:CGPointMake(0, 300)];
    [path addLineToPoint:CGPointMake(0, 0)];
    
    path.lineWidth = 5;
    [[UIColor redColor]set];
    [path stroke];
    
    
    int lines = 0;
    NSArray *dataArray = @[@100,@200,@290,@80,@70,@30,@40,@50];
    for (NSNumber *num in dataArray) {
        
        //柱状图的最低点
        CGPoint startPoint = CGPointMake(20 + lines * 300 / dataArray.count, 300);
        
        CGPoint endPoint = CGPointMake(20 + lines * 300 / dataArray.count, 300 - 300 * ([num intValue] / 300.0));
        UIBezierPath *path = [UIBezierPath bezierPath];
        [path moveToPoint:startPoint];
        [path addLineToPoint:endPoint];
        [UIColor greenColor];
        path.lineWidth = 20;
        [path stroke];
        lines++ ;
    }
}
柱状图

饼状图

-(void)bingZhuangTu{
    NSMutableArray *dataArray = [NSMutableArray array];
    for (int i = 0; i <= 100; i++) {
        [dataArray addObject:@1];//分成100份 这个根据个人情况细分
    }
    CGFloat start = 0;
    CGFloat end = 0;
    
    for (NSNumber *num in dataArray) {
        
        //计算角度
        end = num.floatValue / 100 * M_PI * 2; //总共360度
        
        //参数依次是 圆心 半径 起始角度 结束角度
        UIBezierPath *path = [UIBezierPath bezierPathWithArcCenter:CGPointMake(150, 150) radius:100 startAngle:start endAngle:start + end clockwise:YES];
        //关闭路径
        [path addLineToPoint:CGPointMake(150, 150)];
        [path closePath];
        
        
        [[UIColor colorWithRed:arc4random()%256/255.0 green:arc4random()%256/255.0 blue:arc4random()%256/255.0 alpha:1] set];//随机色
        [path fill];//设置填充
        start += end;
    }
    
}
饼状图

我们在模拟一种等分的效果,把圆分成等比例的四分, 上面代码也即是等价于下面内容 下面是对上面的一个分解执行

-(void)yuan{
    UIBezierPath *path = [UIBezierPath bezierPathWithArcCenter:CGPointMake(150, 150) radius:100 startAngle:0 endAngle:M_PI_2 clockwise:YES];
    [path addLineToPoint:CGPointMake(150, 150)];
    [path closePath];
    [path stroke];
    
    UIBezierPath *path2 = [UIBezierPath bezierPathWithArcCenter:CGPointMake(150, 150) radius:100 startAngle:M_PI_2 endAngle:M_PI_2 + M_PI_2 clockwise:YES];
    
    [[UIColor redColor] set];
    [path2 addLineToPoint:CGPointMake(150, 150)];
    
    [path2 closePath];
    
    [path2 stroke];
    
    UIBezierPath *path3 = [UIBezierPath bezierPathWithArcCenter:CGPointMake(150, 150) radius:100 startAngle:M_PI endAngle:M_PI + M_PI_2 clockwise:YES];
    [path3 addLineToPoint:CGPointMake(150, 150)];
    [[UIColor blueColor] set];
    
    [path3 closePath];
    
    [path3 stroke];
    
    UIBezierPath *path4 = [UIBezierPath bezierPathWithArcCenter:CGPointMake(150, 150) radius:100 startAngle:M_PI + M_PI_2 endAngle:0 clockwise:YES];
    
    [path4 addLineToPoint:CGPointMake(150, 150)];
    [[UIColor blackColor] set];
    
    [path4 closePath];
    [path4 stroke];
}

程序运行效果如下:



我们把stroke改为fill就变为了填充的样式,再次不在演示.

图片剪切

我们接下来研究一下如何对图片进行剪切我们在viewDidLoad:方法里

    //拥有一张图片
    UIImage *image =[UIImage imageNamed:@"2"];
    myImageView *imageView = [[myImageView alloc]initWithImage:image];
    imageView.backgroundColor = [UIColor grayColor];
    CGRect rectFrame = CGRectMake(50, 50, 0, 0);
    rectFrame.size = image.size;
    imageView.frame = rectFrame;
    [self.view addSubview:imageView];
运行以上代码后的结果

接着我们做一下处理

    //需要剪切的范围
    UIGraphicsBeginImageContextWithOptions(image.size, NO, 0);
    UIBezierPath *path = [UIBezierPath bezierPathWithOvalInRect:CGRectMake(0, 0, image.size.width, image.size.height)];
    [path addClip];
    //剪切
    [image drawAtPoint:CGPointZero];
    
    //获取剪切好的图片
    UIImage *aImage = UIGraphicsGetImageFromCurrentImageContext();
    
    UIGraphicsEndImageContext();
    
    imageView.image= aImage;
再次执行后的结果

这个时候我们可以看到,按照要求我们获得了一个剪切之后的椭圆图形.
但是我们有时候可以根据自己实际的需要来进行裁剪 我们接下来做一件事情 需求是什么呢 鼠标在键盘上画一块区域 我们对图片进行裁剪 ,获取这个区域之内的内容.
首先我们自定义一个view视图

.h
#import <UIKit/UIKit.h>
typedef void(^MyBlock)(UIBezierPath *);
@interface MYView : UIView
@property(nonatomic,copy)MyBlock block;
@end

.m
#import "MYView.h"
@interface MYView ()
@property(nonatomic,strong)NSMutableArray *pathArray;
@end


@implementation MYView

-(NSMutableArray *)pathArray{
    if (!_pathArray) {
        _pathArray=[NSMutableArray array];
    }
    return _pathArray;
}

// Only override drawRect: if you perform custom drawing.
// An empty implementation adversely affects performance during animation.
- (void)drawRect:(CGRect)rect {
    // Drawing code
    for (UIBezierPath *path in self.pathArray) {
        path.lineWidth = 5;
        [path stroke];
    }
}
-(void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{
    UIBezierPath *path = [UIBezierPath bezierPath];
    [path moveToPoint:[[touches anyObject] locationInView:self]];
    [self.pathArray addObject:path];
}
-(void)touchesMoved:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{
    
    //获取终点 不止一个终点
    UIBezierPath *path = [self.pathArray lastObject];
    [path addLineToPoint:[[touches anyObject] locationInView:self]];
    //调用drawRect方法
    [self setNeedsDisplay];
}

-(void)touchesEnded:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{
    UIBezierPath *path = [_pathArray lastObject];
    [path closePath];
    [self setNeedsDisplay];
    self.block(path);
}

视图自定义完毕之后 我们回到viewDidLoad:方法里面

- (void)viewDidLoad {
    [super viewDidLoad];
    
    __block UIImage *image = [UIImage imageNamed:@"2"];
    self.imageView = [[UIImageView alloc]initWithImage:image];
    //self.imageView.frame= self.view.frame;
    self.myView = [[MYView alloc]initWithFrame:self.imageView.frame];
    self.myView.backgroundColor = [UIColor colorWithRed:1.0 green:1.0 blue:1.0 alpha:0];
    [self.view addSubview:self.imageView];
    [self.view addSubview:self.myView];
    
    
    __weak typeof(self) se = self;
    
    self.myView.block = ^(UIBezierPath *p){
        //剪切
        UIGraphicsBeginImageContextWithOptions(image.size, NO, 0);
        //剪切路径
        UIBezierPath *path = p;
        [path addClip];//剪切
        
        [image drawAtPoint:CGPointZero];
        
        image = UIGraphicsGetImageFromCurrentImageContext();
        
        //结束上下文
        UIGraphicsEndImageContext();
        
        //给imageView赋值
        se.imageView.image= image;
        
    }; 
}

运行之后我们会看到:



但是当我们用鼠标划出一个区域的时候 会看到:




由此 我们就获得了自己想截取的部分~~~~~~
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,590评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 86,808评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,151评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,779评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,773评论 5 367
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,656评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,022评论 3 398
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,678评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 41,038评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,659评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,756评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,411评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,005评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,973评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,203评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,053评论 2 350
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,495评论 2 343

推荐阅读更多精彩内容