gpt4 book ai didi

ios - 如何在iOS中清除CGContext中的圆圈

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

我想使用 CGcontext 创建图像。这是具有白色或黑色背景的简单图像。我还想添加圆形的透明部分(检查附图)。我知道如何正确地做到这一点。但我想让它转圈。请任何人帮助我。 enter image description here

最佳答案

使用以下代码清除上下文中的圆圈

-(UIImage *) getImageWithcenterClear:(CGPoint) center{

CGRect frame = [[UIScreen mainScreen] bounds];

UIGraphicsBeginImageContextWithOptions([[UIScreen mainScreen] bounds].size,
NO, [UIScreen mainScreen].scale);
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetFillColorWithColor(context, [[UIColor colorWithRed:0 green:0 blue:0 alpha:0.5 ] CGColor]);
CGContextFillRect(context, frame);

float radius = 50 * 2;
// Clear Circle

CGContextSetFillColorWithColor(context, [UIColor clearColor].CGColor);
CGContextSetBlendMode(context, kCGBlendModeClear);
CGContextAddArc(context, center.x, center.y, radius - 0.54, 0, 2 * M_PI, 0);
CGContextDrawPath(context, kCGPathFill);
CGContextSetBlendMode(context, kCGBlendModeNormal);

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

return image;

}

关于ios - 如何在iOS中清除CGContext中的圆圈,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33580519/

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