旋转后的CGcontext原点

时间:2015-03-27 14:04:13

标签: ios image-processing rotation cgimage ciimage

我正在尝试围绕中心旋转图像,然后将旋转图像的中心放在一个点上。当我在rotatoin之后的上下文中绘制它时它没有画出我期望的地方......

CGContextTranslateCTM( context, xOffset, yOffset);
CGContextRotateCTM(context, radiansOffset);
CGContextTranslateCTM( context, -xOffset, -yOffset)

[backgroundimage drawInRect:CGRectMake( x, y, width, height)];

当我放置图像而不旋转时,它被放置在我想要的位置,但是在如上所述旋转之后,它几乎就像它仍然围绕图像本身外的点旋转一样。

0 个答案:

没有答案