I’m drawing with Core Graphics and I need to scale down the current context.
I use the CGContextScaleCTM function but this use de origin and not the center.
How can I make scale from center?
I’m drawing with Core Graphics and I need to scale down the current context.
Share
After you have scaled you can use
CGContextTranslateCTMto move the context to wherever you like.