gpt4 book ai didi

iphone - UIImage iPhone 旋转 37.8 度

转载 作者:行者123 更新时间:2023-12-03 20:24:26 27 4
gpt4 key购买 nike

从设备加载图像后,我需要将其旋转 37.8 度,然后将其显示在 View 上。

Objective-C中有没有可以实现图像旋转的函数?

伊恩

最佳答案

旋转 View :

imageView.transform = CGAffineTransformMakeRotation(37.8°);

要旋转图像,

  1. 计算旋转后图像所占据的宽度和高度。
  2. 通过UIGraphicsBeginImageContext创建CGContext
  3. CGContextRotateCTM(UIGraphicsGetCurrentContext(), 37.8°);
  4. [你的图像drawAtPoint:...];
  5. UIGraphicsGetImageFromCurrentImageContext(); 并使用此图像。
  6. 释放上下文。

关于iphone - UIImage iPhone 旋转 37.8 度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2043834/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com