绘画

iOS绘图 - 基础篇

2016-11-16  本文已影响329人  莫须有恋

本篇DEMO
在iOS中进行绘图,不管你是否了解,基本上就是使用的Core Graphics。Core Graphics Framework是一套基于C的API框架,使用了Quartz作为绘图引擎。它提供了低阶别、轻量级、高保真度的2D渲染,该框架可以用于基于路径的绘图、变换、颜色管理、脱屏渲染、模板、渐变、遮蔽、图像数据处理、图像的创建、遮罩、以及PDF文档的创建、显示和分析。

Core Graphics API的所有操作都是在一个上下文中进行。所以在绘图之前,我们需要去获取该上下文,并传入执行渲染的函数中。

//创建图片类型的上下文
UIGraphicsBeginImageContextWithOptions
//UIView,在drawRect中,Cocoa会为你创建一个图形上下文
- (void)drawRect:(CGRect)rect
//CALayer
- (void)drawInContext:(CGContextRef)ctx
//delegate回调
- (void)drawLayer:(CALayer *)layer inContext:(CGContextRef)ctx

绘图框架

UIKit

像UIImage、NSString、UIBezierPath、UIColor都提供了方法帮助我们完成绘图任务,虽然功能有限,但大多数情况下都能满足我们的需求

Core Graphics

这是一个绘图专用的API族,通常也被成为QuartZ 2D。Core Graphics是iOS上所有绘图功能的基石,包括UIKit。

下面我们通过栗子来介绍几种不同的绘图方法

UIKit:在UIView的子类方法drawRect方法中进行绘图

- (void)drawRect:(CGRect)rect {
//绘制一个空心圆
    UIBezierPath *round = [UIBezierPath bezierPathWithRoundedRect:self.bounds cornerRadius:self.bounds.size.width/2];

    [[UIColor redColor] setStroke];
    [round stroke];
}

Core Graphics:在drwaRect中实现绘制

- (void)drawRect:(CGRect)rect {
    CGContextRef context = UIGraphicsGetCurrentContext();
    
    
//    CGMutablePathRef path = CGPathCreateMutable();
//    CGPathAddRoundedRect(path, nil, self.bounds, self.bounds.size.width/2, self.bounds.size.width/2);
//    CGPathCloseSubpath(path);
//    CGContextAddPath(context, path);
    
    
    CGContextAddEllipseInRect(context, self.bounds);
    CGContextSetStrokeColorWithColor(context, [UIColor redColor].CGColor);
    CGContextSetLineWidth(context, 10);
    
//    CGContextClip(context);
    CGContextStrokePath(context);
}

在代理回调方法中进行绘制

UIGraphicsBeginImageContextWithOptions

- (void)drawRect:(CGRect)rect {
//UIKit
 UIGraphicsBeginImageContextWithOptions(self.bounds.size, NO, 0);
    //UIKit
//    UIBezierPath *path = [UIBezierPath bezierPathWithRoundedRect:self.bounds cornerRadius:self.bounds.size.width/2];
//    [[UIColor redColor] setStroke];
//    [path stroke];

    //Core Graphics
    CGContextRef ctx = UIGraphicsGetCurrentContext();
    CGContextAddEllipseInRect(ctx, self.bounds);
    CGContextSetStrokeColorWithColor(ctx, [UIColor redColor].CGColor);
    CGContextSetLineWidth(ctx, 1);
    CGContextStrokePath(ctx);

    UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    
    
    UIImageView *imageV = [[UIImageView alloc] initWithFrame:self.bounds];
    [imageV setImage:image];
    [self addSubview:imageV];

}

CAShapeLayer绘图,可以快速实现一些简单的动画

- (void)drawRect:(CGRect)rect {
    CAShapeLayer *layer = [CAShapeLayer layer];
    layer.strokeColor = [UIColor redColor].CGColor;
    layer.fillColor = [UIColor clearColor].CGColor;
    layer.lineWidth = 2;
    layer.lineCap = kCALineCapRound;
    [self.layer addSublayer:layer];
    
    //UIKit
//    UIBezierPath *path = [UIBezierPath bezierPathWithRoundedRect:self.bounds cornerRadius:self.bounds.size.width/2];
//    layer.path = path.CGPath;

    //Core Graphics
    CGMutablePathRef path = CGPathCreateMutable();
    CGPathAddRoundedRect(path, nil, self.bounds, self.bounds.size.width/2, self.bounds.size.height/2);
    CGPathCloseSubpath(path);
    layer.path = path;
    
    CGPathRelease(path);
}

Quart 2D 绘制图形简单总结

上一篇下一篇

猜你喜欢

热点阅读