作者热门文章
- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
如何水平翻转UIImage
,我在UIImage
类引用中找到了UIImageOrientationUpMirrored
枚举值,如何利用这个属性来翻转 UIImage
。
最佳答案
objective-C
UIImage* sourceImage = [UIImage imageNamed:@"whatever.png"];
UIImage* flippedImage = [UIImage imageWithCGImage:sourceImage.CGImage
scale:sourceImage.scale
orientation:UIImageOrientationUpMirrored];
swift
let flippedImage = myImage.withHorizontallyFlippedOrientation()
关于ios - 如何水平翻转 UIImage?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5404706/
我是一名优秀的程序员,十分优秀!