gpt4 book ai didi

iphone - 从 View 层获取 UIImage?

转载 作者:行者123 更新时间:2023-12-03 18:31:51 25 4
gpt4 key购买 nike

我有一个 View ,其中的子层的内容是图像。

我希望通过 myView.image 获取 View 的图像,但显然该 View 没有图像,只有图层。

如何从 View 的图层创建 UIImage?

最佳答案

UIGraphicsBeginImageContext(yourView.bounds.size);
[yourView.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();

注意:为此您需要包含 QuartzCore。

关于iphone - 从 View 层获取 UIImage?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5002789/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com