我正在从2个gradient
生成一个UIColors
,然后使用这些函数在其中生成一个UIImage
。
//Function to generate the UIImage from 2 colors.
func createGradient(color1: UIColor, color2: UIColor) -> UIImage {
let gradientLayer = CAGradientLayer()
gradientLayer.frame = self.view.bounds
gradientLayer.colors = [color1.cgColor, color2.cgColor]
let image = image(from: gradientLayer)
return image
}
//Function to generate an Image from a CALayer.
func image(from layer: CALayer) -> UIImage {
UIGraphicsBeginImageContextWithOptions(layer.frame.size, true, 0)
layer.render(in: UIGraphicsGetCurrentContext()!)
let outputImage = UIGraphicsGetImageFromCurrentImageContext()
UIGraphicsEndImageContext()
return outputImage ?? UIImage()
}
我的结果是这个
但是我想从左上角到右下角以对角线显示...。因此Red
应该从左上角开始并逐渐淡入Yellow
向右下角向下倾斜。
我不确定是否应该对角生成渐变,或者在生成图像以对角显示后是否应该旋转图像。
谢谢
答案 0 :(得分:2)
只需将startPoint
和endPoint
添加到渐变层:
[...]
gradientLayer.startPoint = .init(x: 0, y: 0) // top left
gradientLayer.endPoint = .init(x: 1, y: 1) // bottom right
[...]