gpt4 book ai didi

ios - 非圆形发光的 CGContextDrawRadialGradient

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

我可以使用 CGContextDrawRadialGradient 制作一个球体,它可以将 alpha 淡化到 UIColor.clearColor 并且它可以工作。

但是,我正在尝试做这种事情:

enter image description here

虽然在周围放置一些战略球体会产生有趣的效果(类似于战略位置的 LED 背光),但我希望获得真正的发光效果。 如何在 drawRect 中围绕圆角矩形绘制光晕?

最佳答案

您可以使用 CGContextSetShadowWithColor 在任何路径周围创建发光效果,但您无法精确控制外观。特别是,默认阴影相当轻:

the default shadow

我知道让它变暗的唯一方法是再次在其自身上绘制:

enter image description here

不是最优的,但它非常接近您想要的。

这些图像是由以下 drawRect 生成的:

- (void)drawRect:(CGRect)rect
{
CGContextRef context = UIGraphicsGetCurrentContext();

CGMutablePathRef path = CGPathCreateMutable();

int padding = 20;
CGPathMoveToPoint(path, NULL, padding, padding);
CGPathAddLineToPoint(path, NULL, rect.size.width - padding, rect.size.height / 2);
CGPathAddLineToPoint(path, NULL, padding, rect.size.height - padding);

CGContextSetShadowWithColor(context, CGSizeZero, 20, UIColor.redColor.CGColor);
CGContextSetFillColorWithColor(context, UIColor.blueColor.CGColor);

CGContextAddPath(context, path);
CGContextFillPath(context);
// CGContextAddPath(context, path);
// CGContextFillPath(context);

CGPathRelease(path);
}

要记住的一件事是渲染模糊阴影相当昂贵,这可能会或可能不会成为问题,具体取决于您的 View 重绘的频率。如果阴影不需要动画,请考虑将它们渲染到 UIImage 一次,然后只在 UIImageView 中显示结果。

关于ios - 非圆形发光的 CGContextDrawRadialGradient,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10080405/

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