Quartz2D绘图

2016-06-30  本文已影响34人  逆战逆的态度
  • Quartz 2D的功能

  • 使用步骤

绘制图形

- (void)drawRect:(CGRect)rect
{
   // [self drawLine];
   // [self drawLine_2];
   // [self drawRect];
   // [self drawRect_2];
   // [self drawArc];
   // [self drawCircle];
   // [self drawGradient];
   // [self drawText];
   // [self drawImage];
    UIImageView *imageView = [[UIImageView alloc] initWithImage:[self createImage]];
    [self addSubview:imageView];
}
- (void)drawLine{
    /*
     当前视图上下文
     */
    CGContextRef context = UIGraphicsGetCurrentContext(); //获取视图上下文
    /*
     构建路径
     */
    CGMutablePathRef path = CGPathCreateMutable();       //创建路径
    CGPathMoveToPoint(path, NULL, 50, 50);               //设置路径起点
    CGPathAddLineToPoint(path, NULL, 50, 420);           //路径内容
    CGPathAddLineToPoint(path, NULL, 270, 420);
    CGPathAddLineToPoint(path, NULL, 270, 50);
    CGPathCloseSubpath(path);                            //关闭路径
    /*
     将路径添加到上下文
     */
    CGContextAddPath(context, path);
    /*
     设置上下文状态
     */
    CGContextSetRGBStrokeColor(context, 1, 0, 0, 1);     //设置边线颜色
    CGContextSetRGBFillColor(context, 0, 0, 1, 1);       //设置填充颜色
    CGContextSetLineWidth(context, 10);                  //设置线宽
    CGContextSetLineJoin(context, kCGLineJoinBevel);     //设置线段连接样式
    CGContextSetLineCap(context, kCGLineCapSquare);      //设置线段首位样式
    CGFloat lengths[] = {20,100};
    CGContextSetLineDash(context, 100, lengths, 2);      //设置虚线
    /*
     绘制路径
     */
    CGContextDrawPath(context, kCGPathEOFill);
    /*
     释放路径(如果创建对象的函数中包含create,copy或者retain字样,就需要释放!)
     */
    CGPathRelease(path);
}

- (void)drawLine_2
{
    /*
     当前视图上下文
     */
    CGContextRef context = UIGraphicsGetCurrentContext();  //获取视图上下文
    /*
     构建路径
     */
    CGContextBeginPath(context);
    CGContextMoveToPoint(context, 50, 50);
    
    CGContextAddLineToPoint(context, 100, 100);
    CGContextAddLineToPoint(context, 150, 50);
    /*
     保存当前上下文
     */
    CGContextSaveGState(context);
    /*
     设置上下文状态
     */
    CGContextSetRGBStrokeColor(context, 1, 0, 0, 1);        //设置边线颜色
    CGContextSetLineWidth(context, 10);                     //设置线宽
    CGContextSetLineJoin(context, kCGLineJoinBevel);        //设置线段连接样式
    CGContextSetLineCap(context, kCGLineCapSquare);         //设置线段首位样式
    /*
     绘制路径
     */
    CGContextStrokePath(context);
    /*
     恢复上下文
     */
    CGContextRestoreGState(context);
    /*
     再次绘制
     */
    CGContextSetRGBStrokeColor(context, 0, 0, 1, 1);
    CGContextMoveToPoint(context, 50, 50);
    CGContextAddLineToPoint(context, 100, 100);
    CGContextAddLineToPoint(context, 150, 50);
    CGContextStrokePath(context);
}

- (void)drawRect
{
    CGContextRef context = UIGraphicsGetCurrentContext();  //获取视图上下文
    CGContextAddRect(context, CGRectMake(50, 50, 100, 100));
    CGContextFillPath(context);
}

- (void)drawRect_2
{
    CGContextRef context = UIGraphicsGetCurrentContext();
    [[UIColor redColor] setFill];
    [[UIColor darkGrayColor] setStroke];
    CGContextFillRect(context, CGRectMake(50, 50, 100, 100));
    CGContextStrokeRect(context, CGRectMake(50, 50, 100, 100));
}

- (void)drawArc
{
    CGContextRef context = UIGraphicsGetCurrentContext();
    
    [[UIColor redColor] set];
    /*
     添加圆弧
     */
    CGContextAddArc(context, 160, 230, 100, 0, M_PI_2, 0);
    /*
     绘制路径
     */
    CGContextStrokePath(context);
}

- (void)drawCircle
{
    CGContextRef context =  UIGraphicsGetCurrentContext();
    
    [[UIColor greenColor] setFill];
    
    CGContextAddEllipseInRect(context, CGRectMake(50, 50, 200, 200));
    
    CGContextFillPath(context);
}

- (void)drawGradient
{
    // 1. 定义渐变引用CGGradientRef
    CGGradientRef gradient;
    // 2. 定义色彩空间引用
    CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB();
    // 3. 定义渐变颜色组件
    //   每四个数一组,分别对应r,g,b,透明度
    CGFloat components[8] = {1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 1.0};
    // 4. 定义颜色渐变位置
    // 第一个颜色开始渐变的位置
    // 第二个颜色结束渐变的位置
    CGFloat locations[2] = {0, 1};
    
    // 5. 创建颜色渐进
    gradient = CGGradientCreateWithColorComponents(colorSpace, components, locations, 2);
    
    // 6. 创建贝塞尔路径,是OC的,如果只是制定了渐变,没有指定剪切路径,就是整个视图的渐变
    UIBezierPath *path = [UIBezierPath bezierPathWithRect:CGRectMake(50, 50, 200, 200)];
    // 7. 添加剪切路径
    [path addClip];
    
    // 8. 绘制线性渐进
    CGContextRef context = UIGraphicsGetCurrentContext();
    CGContextDrawLinearGradient(context, gradient, CGPointMake(50, 50), CGPointMake(200, 50), kCGGradientDrawsAfterEndLocation);
    
    // 9. 释放颜色空间
    CGColorSpaceRelease(colorSpace);
    // 10. 释放渐变引用
    CGGradientRelease(gradient);
}

- (void)drawText
{
    NSString *text = @"I Love you!I Love you!I Love you!I Love you!I Love you!I Love you!I Love you!I Love you!I Love you!";
    
    NSLog(@"%@",[UIFont familyNames]);
    
    // 使用set既指定边框颜色,又指定填充颜色
    [[UIColor redColor]set];
    
    UIFont *font = [UIFont fontWithName:@"Marker Felt" size:30];
    [text drawAtPoint:CGPointMake(50, 50) withFont:font];
    
    CGRect rect = CGRectMake(50, 200, 200, 200);
    [[UIColor blueColor]set];
    UIRectFill(rect);
    
    [[UIColor redColor]set];
    // 只能用居中、左、右对齐
    [text drawInRect:rect withFont:font lineBreakMode:NSLineBreakByWordWrapping alignment:NSTextAlignmentCenter];
}

- (void)drawImage
{
    UIImage *image = [UIImage imageNamed:@"1.png"];
    
    // 在指定点绘制
    [image drawAtPoint:CGPointMake(50, 50)];
    // 会拉伸
    [image drawInRect:CGRectMake(0, 0, 320, 460)];
    // 平铺
    [image drawAsPatternInRect:CGRectMake(0, 0, 320, 460)];
}

- (UIImage *)createImage
{
    // 1. 获得图像相关的上下文
    // 获得图像上下文的时候,需要指定上下文大小
    UIGraphicsBeginImageContext(CGSizeMake(320, 200));
    
    // 2. 绘制图像
    UIImage *image = [UIImage imageNamed:@"1.png"];
    [image drawInRect:CGRectMake(0, 0, 320, 200)];
    
    // 3. 写水印文字
    NSString *text = @"水印文字";
    // [[UIColor whiteColor]set];
    // 新建一个UIColor
    UIColor *color = [UIColor redColor];
    [color set];
    
    [text drawInRect:CGRectMake(0, 170, 300, 20) withFont:[UIFont systemFontOfSize:12] lineBreakMode:NSLineBreakByWordWrapping alignment:NSTextAlignmentRight];
    
    // 从图像上下文中获得当前绘制的结果,并生成图像
    UIImage *result =  UIGraphicsGetImageFromCurrentImageContext();
    
    // 4. 关闭上下文
    UIGraphicsEndImageContext();
    
    // 5. 把图像归档,可以用这个方法来做缩略图
    // NSArray *documents = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    // NSString *path = [documents[0]stringByAppendingPathComponent:@"image.png"];
    
    NSString *path = @"/Users/apple/Desktop/image.png";
    
    NSData *imageData = UIImagePNGRepresentation(result);
    [imageData writeToFile:path atomically:YES];
    
    return result;
}

上一篇下一篇

猜你喜欢

热点阅读