Creating a mirror image of an NSImage
Creating a mirror image of an NSImage
- Subject: Creating a mirror image of an NSImage
- From: Steve Gehrman <email@hidden>
- Date: Tue, 11 Dec 2001 15:09:23 -0800
I am creating an image of a string with...
[image lockFocus];
[string drawString];
[image unlockFocus];
Now I want to manipulate the image so it draw a mirror image of the
string to the screen. I want to do this so the string will be readable
when reflected off a mirror.
Is this possible?
-steve