0
点赞
收藏
分享

微信扫一扫

How to flip UIImage horizontally? 如何旋转图片,IOS前置摄像头左右成像

在觉 2022-08-06 阅读 6


UIImage* sourceImage = [UIImage imageNamed:@"whatever.png"];
UIImage* flippedImage = [UIImage imageWithCGImage:sourceImage.CGImage
scale:1.0 orientation: UIImageOrientationLeftMirrored];

 

举报

相关推荐

0 条评论