在 iPhone 中绘制并填充矩形
我有 4 个点,即 (x1,y1)、(x2,y2)、(x2,y3) 和 (x4,y4)。我需要用这些点绘制一个矩形,并在该矩形内填充颜色。有人可以帮我解决这个问题吗?
I have 4 points say (x1,y1), (x2,y2), (x2,y3) and (x4,y4). I need a draw a rectangle with these points and fill a color inside that rect. Can any one help me with this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
首先,获取当前图形上下文:
接下来,定义矩形:
现在,设置填充颜色,例如红色
设置描边颜色,例如绿色:
最后,填充矩形:
First, get the current graphics context:
Next, define the rectangle:
Now, set the fill color, e.g red
Set the stroke color, e.g. green:
Finally, fill the rectangle:
创建一个 UIBezierPath 对象。移动到第一个点,然后为后续的三个点调用
addLineToPoint:
。然后调用closePath。您现在可以
填充
或描边
此路径,或者如果您想使用核心图形,则获取CGPath
。有关文档,请参阅此处。
Create a
UIBezierPath
object. Move to your first point, then calladdLineToPoint:
for your subsequent three points. Then callclosePath
.You can now
fill
orstroke
this path, or obtain theCGPath
if you want to use core graphics.See here for the documentation.
如果您需要 swift 4.2 相同的:
If You need the same for swift 4.2: