iPhone中的剪切技巧:
1.获取图形上下文
2.构造剪切的路径(形状)
3.构建剪切区域
4.贴上你的画
- // 1
- CGContextRef context = UIGraphicsGetCurrentContext();
- // 2
- CGRect bounds = CGRectMake(0.0f, 0.0f, SIDELENGTH, SIDELENGTH);
- CGMutablePathRef path = CGPathCreateMutable();
- CGPathAddEllipseInRect(path, NULL, bounds);
- // 3
- CGContextAddPath(context, path);
- CGContextClip(context);
- // 4
- [LOGO drawInRect:bounds];
id 博主 = [[KILONET.CNBLOGS.COM alloc] initWithValue:@"天堂向右,我依然向左"
网名:@"老舟"
兴趣:@"影音,阅读"
动态:@"系统架构设计,Android通信模块开发"
网址:@"http://kilonet.cnblogs.com"
签名:@"--------------------------------------------------
Stay Hungry , Stay Foolish
求 知 若 渴,处 事 若 愚
--------------------------------------------------"
]; // Never Release