[futurebasic] Text orientation problem

Message: < previous - next > : Reply : Subscribe : Cleanse
Home   : February 2012 : Group Archive : Group : All Groups

From: Ken Shmidheiser <kshmidheiser@...>
Date: Mon, 13 Feb 2012 22:13:50 -0500
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