iPhone PDF创建文本反转问题

时间:2012-03-01 11:07:25

标签: iphone ios quartz-2d

我正在创建一个用于创建pdf的iPhone应用程序。我使用以下代码:

    [self drawRect:CGRectMake(0, 0, 100, 20 )text:@"last Name"xVal:10 yVal:-30 len:9];
    [self drawRect:CGRectMake(0, 0, 100, 20 )text:@"First Name"xVal:180 yVal:30 len:10];
    [self drawRect:CGRectMake(0, 0, 100, 20 )text:@"Middle Name"xVal:330 yVal:-30 len:11];

    + (void) drawRect:(CGRect)rect text:(NSString *)string xVal:(int)x yVal:(int)y len:(int)length{
        CGContextRef theContext = UIGraphicsGetCurrentContext(); 
        CGRect viewBounds = rect;
        CGContextTranslateCTM(theContext, 0, viewBounds.size.height); 
        CGContextScaleCTM(theContext, 1, -1);
        // Draw the text using the MyDrawText function 
        MyDrawText(theContext, viewBounds,string, x, y,length);
    }
void MyDrawText (CGContextRef myContext, CGRect contextRect, NSString *textToDraw, int x, int y, int len){
    float w, h; 
    w = contextRect.size.width; 
    h = contextRect.size.height;
    CGAffineTransform myTextTransform;

    CGContextSelectFont (myContext,"Helvetica-Bold", h, kCGEncodingMacRoman);

    CGContextSetCharacterSpacing (myContext, 3);
    CGContextSetTextDrawingMode (myContext, kCGTextFill);   
    CGContextSetRGBFillColor(myContext, 0, 0, 0, 1);    

    CGContextSetRGBStrokeColor (myContext, 0, 0, 0, 0); 
    myTextTransform = CGAffineTransformMakeRotation(0.0); 
    CGContextSetTextMatrix (myContext, myTextTransform); 
    const char *str = [textToDraw UTF8String];
    CGContextShowTextAtPoint (myContext, x, y,str, len);
}

当我使用这个代码时,我得到的输出就像,第一个和第三个单词很好,但第二个单词就像倒置一样(低头)。为什么这样?有什么想法吗?

2 个答案:

答案 0 :(得分:1)

问题出在CGContextRef theContext = UIGraphicsGetCurrentContext();,每当函数调用时,CGContext采用最后一个状态,这就是获得反转输出的原因。所以,我补充说,

CGContextRef theContext = UIGraphicsGetCurrentContext(); 
CGContextSaveGState(theContext);
//code to draw....
CGContextRestoreGState(theContext);
这解决了这个问题。谢谢:)

答案 1 :(得分:0)

Core Graphics左下角角视为绘图的原点。(在UIKit 左上角)。

在您的方法调用第二个字符串时,您提供的yVal为30,其他值为-30。

谢谢,