如何在视图中对角显示渐变

时间:2019-07-03 08:07:10

标签: ios swift uiimage uikit gradient

我正在从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()
}

我的结果是这个

enter image description here

但是我想从左上角到右下角以对角线显示...。因此Red应该从左上角开始并逐渐淡入Yellow向右下角向下倾斜。

我不确定是否应该对角生成渐变,或者在生成图像以对角显示后是否应该旋转图像。

谢谢

1 个答案:

答案 0 :(得分:2)

只需将startPointendPoint添加到渐变层:

[...]
gradientLayer.startPoint = .init(x: 0, y: 0) // top left
gradientLayer.endPoint = .init(x: 1, y: 1) // bottom right
[...]