Thanks Ken, that did what I needed. On Feb 13, 2012, at 10:13 PM, Ken Shmidheiser wrote: > Steve asked: > >> Can someone tell me how to fix the text orientation? > > > Steve, > > To invert the text, try changing this line: > > CGContextSetTextMatrix( context, CGAffineTransformIdentity ) > > to this > > CGContextSetTextMatrix( context, fn CGAffineTransformMake( 1.0,0.0, 0.0, -1.0, 0.0, 0.0 ) ); > > Without having the running code, I can't test it here. > > Ken > -- > To unsubscribe, send ANY message to: futurebasic-unsubscribe@... > To access the list archives, go to: http://freegroups.net/groups/futurebasic/ >