gpt4 book ai didi

iOS 在给定角度和半径的情况下以编程方式创建圆形扇区的 UIImage

转载 作者:行者123 更新时间:2023-12-01 18:46:05 28 4
gpt4 key购买 nike

编辑:关于 SO 还有一些其他问题,但它们都可以帮助您在 UIView 中绘制圆或弧。我需要一个也作为 UIImage 而不是 UIView 的扇区。

iOS 在给定角度和半径的情况下以编程方式创建圆形扇区的 UIImage

我正在尝试在给定角度和半径的情况下创建圆形扇区的 UIImage。
最终结果应该是该图像的单色版本。我不需要此图像具有的渐变。单色就好。

我需要创建许多具有不同颜色的此类段。

enter image description here

到目前为止,这是我尝试过的,但最终看起来像这样,我不知道:

enter image description here

称呼:
[self getSegmentImageOfRadius:177.5 andAngleRadians:0.63]
方法:

-(UIImage*)getSegmentImageOfRadius:(CGFloat)radius andAngleRadians:(CGFloat)angleRadians{

UIBezierPath *sector = [UIBezierPath
bezierPathWithArcCenter:CGPointMake(0, 0) radius:radius startAngle:0 endAngle:angleRadians clockwise:YES];
UIGraphicsBeginImageContext(CGSizeMake(radius,radius));
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetFillColorWithColor(context, [UIColor greenColor].CGColor);
[sector fill];
UIImage *mage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return mage;
}

最佳答案

试试这个..

创建一个宽度几乎为 190 的 imageView(根据您的要求)

#define pi 3.14159265359
#define DEGREES_TO_RADIANS(degrees) ((pi * degrees) / 180)

在 viewDidLoad
UIImage *image = [self getSegmentImageOfRadius:_imageView.frame.size.width/2 startAngle:160 andEndAngle:200];
_imageView.image = image;

改变方法如下
-(UIImage*)getSegmentImageOfRadius:(CGFloat)radius startAngle:(CGFloat)startAngle andEndAngle:(CGFloat)endAngle
{
CGPoint center = CGPointMake(_imageView.frame.size.width/2, _imageView.frame.size.height/2);
UIBezierPath *path = [UIBezierPath bezierPath];
[path moveToPoint:center];
[path addArcWithCenter:center radius:radius startAngle:DEGREES_TO_RADIANS(startAngle) endAngle:DEGREES_TO_RADIANS(endAngle) clockwise:YES];
[path closePath];

CAShapeLayer *layer = [CAShapeLayer layer];
layer.frame = _imageView.bounds;
layer.path = path.CGPath;
layer.fillColor = [UIColor redColor].CGColor;
UIGraphicsBeginImageContextWithOptions(layer.frame.size, NO, 0);

[layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *outputImage = UIGraphicsGetImageFromCurrentImageContext();

UIGraphicsEndImageContext();

return outputImage;
}

如果您不需要作为图像,您可以将形状添加到 View 层,如下所示
CGPoint center = CGPointMake(self.view.frame.size.width/2, self.view.frame.size.height/2);
UIBezierPath *path = [UIBezierPath bezierPath];
[path moveToPoint:center];
[path addArcWithCenter:center radius:radius startAngle:DEGREES_TO_RADIANS(startAngle) endAngle:DEGREES_TO_RADIANS(endAngle) clockwise:YES];
[path closePath];

CAShapeLayer *layer = [CAShapeLayer layer];
layer.path = path.CGPath;
layer.fillColor = [UIColor redColor].CGColor;
[self.view.layer addSublayer:layer];

关于iOS 在给定角度和半径的情况下以编程方式创建圆形扇区的 UIImage,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35692867/

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