码迷,mamicode.com
首页 > 其他好文 > 详细

Quartz2D指定显示范围

时间:2015-04-08 15:00:25      阅读:1306      评论:0      收藏:0      [点我收藏+]

标签:

在qq中,可以看到头像是圆形显示的,通过CGContextClip可以设置

CGContextRef context=UIGraphicsGetCurrentContext();
     CGContextAddEllipseInRect(context, CGRectMake(100, 100, 100, 100));
     CGContextClip(context);
     UIImage *img=[UIImage imageNamed:@"img.jpg"];
    [img drawAtPoint:CGPointMake(100, 100)];

 技术分享

 CGContextRef context=UIGraphicsGetCurrentContext();
     UIImage *img=[UIImage imageNamed:@"img.jpg"];
     CGContextMoveToPoint(context, 30, 120);
     CGContextAddLineToPoint(context, 50, 200);
     CGContextAddLineToPoint(context, 200, 60);
     CGContextClosePath(context);
     CGContextClip(context);
    [img drawAtPoint:CGPointMake(30, 120)];

 技术分享

Quartz2D指定显示范围

标签:

原文地址:http://www.cnblogs.com/cuiyw/p/4402282.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!