菜鸟教程小白 发表于 2022-12-13 02:25:06

ios - 如何将(编辑的)UIView 转换为 UIImage?


                                            <p><p>我想将更改后的 UIView 保存为 UIImage。但是,它将始终保存为第一个(默认) View 。</p>

<p>这是第一个(默认)UIView。</p>

<p> <a href="/image/HHyB5.png" rel="noreferrer noopener nofollow"><img src="/image/HHyB5.png" alt="enter image description here"/></a> </p>

<p>应用使用渐变动画来改变颜色。
修改后的 UIView 和下图一样:</p>

<p> <a href="/image/LGxmT.png" rel="noreferrer noopener nofollow"><img src="/image/LGxmT.png" alt="enter image description here"/></a> </p>

<p>我写的代码如下:</p>

<pre><code>extension UIImage {
convenience init(layer: CALayer, view: UIView) {
    UIGraphicsBeginImageContext(view.frame.size)
    layer.render(in: UIGraphicsGetCurrentContext()!)
    let image = UIGraphicsGetImageFromCurrentImageContext()
    UIGraphicsEndImageContext()
    self.init(cgImage: (image?.cgImage)!)
    }
}
</code></pre>

<p>顺便说一下,图片是用默认的 UIView 保存的。</p>

<p>如何使用更改后的 UIView 保存图像?</p>

<p><strong>[编辑] 添加动画代码</strong></p>

<pre><code>func animateLayer(){

    if index == 11 {
      addEmitter(a: index, b: 0)
      fromColors = , Colors.fromColorList]
      toColors = , Colors.toColorList]
      index = 0
    } else {
      addEmitter(a: index, b: index + 1)
      fromColors = , Colors.fromColorList]
      toColors = , Colors.toColorList]
      index += 1
    }

    animation.fromValue = fromColors
    animation.toValue = toColors
    animation.duration = 1.00

    mind.mindAnimation(animation: animation)

}
</code></pre>

<p><strong> 添加 ViewDidAppear</strong></p>

<pre><code>override func viewDidAppear(_ animated: Bool) {

    animation.isRemovedOnCompletion = false
    animation.fillMode = kCAFillModeForwards
    animation.timingFunction = CAMediaTimingFunction(name: kCAMediaTimingFunctionLinear)
    animation.delegate = self
}
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>要在动画期间获取动画层的内容,您应该使用表示层而不是 View 层。对于您的代码,这应该是这样的:</p>

<pre><code>if let layer = view.layer.presentation() {
    let image = UIImage(layer: layer, view: view)
    ...
}
</code></pre>

<p>您应该在动画完成后执行此代码,然后再将其从 View 层中移除。</p>

<p>如果您不想反转动画,“还原”它的过程应该更容易。这意味着您可以交换开始颜色和结束颜色并直接在 View 中设置目标颜色。在这种情况下,您不需要在动画结束时保留动画,您可以使用 View 的图层来保存图像。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何将(编辑的)UIView 转换为 UIImage?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/45451442/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/45451442/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何将(编辑的)UIView 转换为 UIImage?