gpt4 book ai didi

ios - 从 UIView 以编程方式创建 UIImage

转载 作者:行者123 更新时间:2023-11-29 03:00:17 26 4
gpt4 key购买 nike

有没有办法从具有背景色的 UIView 创建 UIImageUIImageView。我的目的是在图像中获得这种颜色。如果可以的话我该怎么做?

最佳答案

+ (UIImage *)imageWithColor:(UIColor *)color andRect:(CGRect)rect {
UIGraphicsBeginImageContext(rect.size);
CGContextRef context = UIGraphicsGetCurrentContext();

CGContextSetFillColorWithColor(context, [color CGColor]);
CGContextFillRect(context, rect);

UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();

return image;
}

关于ios - 从 UIView 以编程方式创建 UIImage,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23388960/

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