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

CGContextRef 使用小记

时间:2018-05-12 17:30:22      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:1.0   art   drawrect   col   size   draw   画圆   oat   set   

1. 用CGContextRef 画文字

在 UIView的 - (void)drawRect:(CGRect)rect {} 方法中进行

    CGContextRef context = UIGraphicsGetCurrentContext();
    CGContextSetShouldAntialias(context, YES); // 抗锯齿
    CGContextSetLineWidth(context, 1.0f); //设置线宽

    /*写文字*/
        CGContextSetRGBFillColor (context,  1, 0, 0, 1.0);//设置填充颜色
        UIFont  *font = [UIFont boldSystemFontOfSize:15.0];//设置文本字体大小
        NSDictionary *attribute = @{NSFontAttributeName:wordFont,NSForegroundColorAttributeName: fontColor};
        [@"文字" drawInRect:CGRectMake(10, 20, 80, 20) withAttributes:attribute];
2. 画圆

    /** 画圆 */
    //void CGContextAddArc(CGContextRef c,CGFloat x, CGFloat y,CGFloat radius,CGFloat startAngle,CGFloat endAngle, int clockwise)1弧度=180°/π (≈57.3°) 度=弧度×180°/π 360°=360×π/180 =2π 弧度
    // x,y为圆点坐标,radius半径,startAngle为开始的弧度,endAngle为 结束的弧度,clockwise 0为顺时针,1为逆时针。

CGContextSetRGBStrokeColor(context,1,0,0,1.0);//画笔线的颜色 不设置的话是黑色

 

CGContextRef 使用小记

标签:1.0   art   drawrect   col   size   draw   画圆   oat   set   

原文地址:https://www.cnblogs.com/liuw-flexi/p/9029168.html

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