更改 UIImage 的方向? Swift
Change Orientation Of UIImage? Swift
我需要更改图像方向。我查看了堆栈溢出,但没有找到任何帮助。请务必帮忙!
我正在使用 UIImage 类型,并且想要 return 一个 UIImage
已经提出了一些这样的问题,但我在 Objective C 中发现了一些问题,或者有些问题肯定行不通。请告诉我!!
谢谢!
您可以使用此功能更改方向 Apple Docs
init(cgImage:scale:orientation:)
Initializes and returns an image
object with the specified scale and orientation factors
声明
init(cgImage: CGImage,
scale: CGFloat,
orientation: UIImage.Orientation)
使用方法
if let image = UIImage(named: "YourImageName")?.cgImage {
YourImageView.image = UIImage(cgImage: image, scale: UIScreen.main.scale, orientation: .right)
}
我需要更改图像方向。我查看了堆栈溢出,但没有找到任何帮助。请务必帮忙!
我正在使用 UIImage 类型,并且想要 return 一个 UIImage
已经提出了一些这样的问题,但我在 Objective C 中发现了一些问题,或者有些问题肯定行不通。请告诉我!!
谢谢!
您可以使用此功能更改方向 Apple Docs
init(cgImage:scale:orientation:)
Initializes and returns an image object with the specified scale and orientation factors
声明
init(cgImage: CGImage,
scale: CGFloat,
orientation: UIImage.Orientation)
使用方法
if let image = UIImage(named: "YourImageName")?.cgImage {
YourImageView.image = UIImage(cgImage: image, scale: UIScreen.main.scale, orientation: .right)
}