CGContext行缩进

时间:2013-11-06 12:43:07

标签: ios iphone graphics line cgcontext

所以,我在iOS上画了一条线,但结果有点缩进:

Line

实际上我正是以这种方式处理上下文:

CGContextSetLineCap(context, kCGLineCapRound);
CGContextSetLineJoin(context, kCGLineJoinRound);
CGContextSetAllowsAntialiasing(context, YES);
CGContextSetLineWidth(context, 0.25);
CGContextSetShouldAntialias(context, YES);
CGContextSetMiterLimit(context, 0.25);

我关闭路径并将上下文呈现为UIImage。有什么建议吗?

0 个答案:

没有答案