理解CGContextTranslateCTM和CGContextScaleCT

CGContextTranslateCTM会将整个用户坐标系移动,也会移动坐标系的起点。

举例:

CGContextTranslateCTM(context, 0, 40)会将整个坐标系下移40,这时使用CGContextScaleCT(context, 1, -1)是以x轴转动180度。

你可能感兴趣的:(理解CGContextTranslateCTM和CGContextScaleCT)