vote up 0 vote down star

I am using bottom left corner instead of top left to draw on iPhone using the following:

CGContextTranslateCTM(context, 0.0, 200.0); CGContextScaleCTM(context, 1.0, -1.0);

While this works fine for changing my origin to draw a chart but labeling appears upside down.

How do use my coordinate system but also get normal straight text to properly label the chart I am drawing ?

flag

2 Answers

vote up 1 vote down

Use CGContextSaveGState and CGContextRestoreGState to make sure
that the CTM scaling applies to your graphics and not your text.

link|flag
vote up 0 vote down

Yes ive just recently had to solve the same problem. The trick is to briefly undo the "inversion" just before writing the labels:

    NSPoint p = NSMakePoint(x+5,5);
CGContextSaveGState(ctx);  
CGContextTranslateCTM(ctx, 0, b.origin.y+y+25); // Flip temporarily for text 
CGContextScaleCTM(ctx, 1.0, -1.0);  
[string drawAtPoint: p withAttributes:nil];    // Draw your strings
CGContextRestoreGState(ctx);                   // Flip back

Note the b.origin.y value is the height of the viewable area, x and y are the positions of the labels

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.