1

我在 UIView 的扩展类的 drawrect 方法中使用以下上下文来绘制路径和字符串。

CGContextRef context = UIGraphicsGetCurrentContext();

CGContextScaleCTM(context, 1, -1);
CGContextTranslateCTM(context, 0, -rect.size.height);

绘制路径我使用

CGContextSetRGBStrokeColor(context, 0, 0, 0, 1.0f);
CGContextSetLineWidth(context, 1);
CGContextBeginPath(context);
CGContextMoveToPoint(context, origin.x, origin.y);
CGContextAddLineToPoint(context, currentX, origin.y);
......
CGContextStrokePath(context);

绘制我使用的文本

CGContextSetLineWidth(context, 2.0);    
[self.title drawInRect:CGRectMake(100, 100, 200, 40) withFont:font];

我得到了正确的路径,但文本颠倒了!如果我删除 CGContextScaleCTM 和 CGContextTranslateCTM 我会得到路径颠倒!有人可以帮我解决这个问题吗?

4

2 回答 2

2

在绘制路径之前保存之前的上下文并在之后恢复它:

CGContextRef context = UIGraphicsGetCurrentContext();

// save the original context
CGContextSaveGState(context);

CGContextScaleCTM(context, 1, -1);
CGContextTranslateCTM(context, 0, -rect.size.height);

// draw path

// restore the context
CGContextRestoreGState();

// draw text

应该这样做。

于 2013-07-24T13:46:51.917 回答
1

我最终编写了以下代码。可以帮助某人!

- (void)drawText:(NSString*)text context:(CGContextRef)context rect:(CGRect)rect verticle:(BOOL)verticle {
    CGAffineTransform translate = CGAffineTransformMakeTranslation(0, -rect.size.height);
    CGAffineTransform transform = translate;

    if(verticle) {
        CGAffineTransform rotation = CGAffineTransformMakeRotation(M_PI/2);
        transform = CGAffineTransformConcat(translate, rotation);
    }

    CGContextSetTextMatrix(context, transform);
    CGContextShowTextAtPoint(context, rect.origin.x, rect.origin.y, [text UTF8String], text.length);

}

于 2013-07-25T13:28:00.103 回答