美文网首页
CGContextRef

CGContextRef

作者: 你飞跃俊杰 | 来源:发表于2019-12-30 11:30 被阅读0次

    画纸

    CGContextRef context = UIGraphicsGetCurrentContext();
    

    设置

     CGContextSetLineWidth(context, 0.5);//宽?有问题
    CGContextSetStrokeColorWithColor(context, [UIColor colorWith0xRGB:0xE3E3E3].CGColor);//颜色
    

    画字

    [text drawInRect:CGRectMake(x+1, y-1, width, heigt) withAttributes:txtDic];
    

    画线

    CGContextMoveToPoint(context, width*i, 0);//起点
    CGContextAddLineToPoint(context, width*i, self.height);//第二个点
    CGContextDrawPath(context, kCGPathStroke);/连线
    

    画圆

    CGContextAddArc(context, x, y+width/2, width, 0, 2*PI, 0);
    

    画图

    [image drawInRect:CGRectMake(60, 400, 60, 60)];
    CGContextDrawImage(context, CGRectMake(160, 400, 60, 60), image.CGImage);
    

    相关文章

      网友评论

          本文标题:CGContextRef

          本文链接:https://www.haomeiwen.com/subject/kmwpoctx.html