gpt4 book ai didi

iphone - 在 iPhone 中绘制并填充矩形

转载 作者:行者123 更新时间:2023-12-03 19:26:16 25 4
gpt4 key购买 nike

我有 4 个点,即 (x1,y1)、(x2,y2)、(x2,y3) 和 (x4,y4)。我需要用这些点绘制一个矩形,并在该矩形内填充颜色。谁能帮我这个?

最佳答案

首先,获取当前图形上下文:

CGContextRef context = UIGraphicsGetCurrentContext();

接下来,定义矩形:

CGRect myRect = {x1, y1, x2 - x1, y2 - y1};

现在,设置填充颜色,例如红色

CGContextSetRGBFillColor(context, 1.0, 0.0, 0.0, 1.0);

设置描边颜色,例如绿色:

CGContextSetRGBStrokeColor(context, 0.0, 1.0, 0.0, 1.0);

最后,填充矩形:

CGContextFillRect(context, myRect);

关于iphone - 在 iPhone 中绘制并填充矩形,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7497255/

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