本文介绍了如何获取图像方向以旋转270度(swift3)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
现在,此代码只会将我的图片旋转90度.我不知道如何将其旋转270度.
Right now this code will only rotate my image 90 degrees. I can not figure out how to rotate it 270 degrees.
transform = transform.rotated(by: CGFloat(Double.pi))
推荐答案
从一些基本数学开始.
360°=2π. 180°=π. 90°=π/2. 270°=3π/2.
360° = 2π. 180° = π. 90° = π/2. 270° = 3π/2.
这意味着您发布的代码正在旋转180度.
This means your posted code is rotating 180 degrees.
将Double.pi/2
用于90°,将3*Double.pi/2
用于270°.
Use Double.pi/2
for 90° and 3*Double.pi/2
for 270°.
这篇关于如何获取图像方向以旋转270度(swift3)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!