not working
I'm running the following code when saving:
CGContextTranslateCTM(_myContext, 1, -1);
CGContextScaleCTM(_myContext, 0, 480); //the image is the whole screen
CGImageRef temp = CGBitmapContextCreateImage(_myContext);
but this code doesn't have any effect, it gets saved just as before, mirror flipped, and what's more - i played with the translate and scaling parameters and it looks like they're not doing anything.
i'm at a loss. help would be greatly appreciated.
|