gpt4 book ai didi

iphone - 将 UIView 的表示保存到文件

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

将 UIView 的表示保存到文件的最简单方法是什么?

我的解决方案是,

 UIGraphicsBeginImageContext(someView.frame.size);
[someView drawRect:someView.frame];
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();

NSString* pathToCreate = @"sample.png";

NSData *imageData = [NSData dataWithData:UIImagePNGRepresentation(image)];
[imageData writeToFile:pathToCreate atomically:YES];

但这似乎很棘手,我认为必须有更有效的方法来做到这一点。

最佳答案

您还可以像这样使用图层:

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

关于iphone - 将 UIView 的表示保存到文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3051630/

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