[futurebasic] Re: [FB] Text orientation problem

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

From: Steve <mactech@...>
Date: Mon, 13 Feb 2012 22:45:10 -0500
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/
>