UIImage旋转自定义度数
我一直在使用此示例中的代码来提供帮助,并且效果很好。 http://www.platinumball.net /blog/2009/03/30/iphone-uiimage-rotation-and-mirroring/
我无法研究如何在 0 和 0 之间旋转自定义角度。 360....
I have been using the code in this sample to assist and this works well.
http://www.platinumball.net/blog/2009/03/30/iphone-uiimage-rotation-and-mirroring/
I cannot workout how to rotate by a custom amount of degrees between 0 & 360....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您将需要执行与该帖子中的旋转几乎相同的操作:
除了旋转之外,您可能还需要平移 CTM 以补偿旋转中心。 如果您不想在旋转时裁剪图像的边缘,则应该使用一些基本的三角函数来增加尺寸。
You'll want to do pretty much the same stuff as in that post does in rotate:
You might need to also translate the CTM in addition to rotating to compensate for the center of rotation. If you want to not crop the edges of the image when rotating, you should increase the size with some basic trig.