更改 iPhone/iPad 中 UIImage 的方向

发布于 2025-01-07 00:02:06 字数 209 浏览 2 评论 0原文

任何人都可以告诉我如何设置 UIImage 的方向。也就是说,如果我的 UIImage 方向是 UIImageOrientationDown 那么我想将其更改为 UIImageOrientationUp

谁能告诉我如何实现这一目标。

我已经搜索了很多,但到目前为止我只找到了关于如何获得图像方向的信息。

Can any body tell me that how can i set the Orientation of my UIImage. That is if my UIImage orientation is UIImageOrientationDown then i Want to change it to UIImageOrientationUp.

Can anybody please tell me how can I achieve this.

I have searched a lot but up till now i have found only regarding how to get the image orientation.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

緦唸λ蓇 2025-01-14 00:02:06

尝试 :-

- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation 
                                duration:(NSTimeInterval)duration {

    if (toInterfaceOrientation == UIInterfaceOrientationLandscapeLeft) {        
        yourImage.transform = CGAffineTransformMakeRotation(M_PI / 2);
    }
    else if (toInterfaceOrientation == UIInterfaceOrientationLandscapeRight){
        yourImage.transform = CGAffineTransformMakeRotation(-M_PI / 2);
    }
    else {
        yourImage.transform = CGAffineTransformMakeRotation(0.0);
    }
}

try :-

- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation 
                                duration:(NSTimeInterval)duration {

    if (toInterfaceOrientation == UIInterfaceOrientationLandscapeLeft) {        
        yourImage.transform = CGAffineTransformMakeRotation(M_PI / 2);
    }
    else if (toInterfaceOrientation == UIInterfaceOrientationLandscapeRight){
        yourImage.transform = CGAffineTransformMakeRotation(-M_PI / 2);
    }
    else {
        yourImage.transform = CGAffineTransformMakeRotation(0.0);
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文