fillRgn 函数的问题
我正在与德尔福合作。在我得到这个问题的解决方案后,现在我想要该组合区域的边界。有什么简单的解决办法吗?
谢谢。
编辑:
边界是指区域的最外部点。我的区域是一个多边形区域,我想要该多边形的点。
I am working with delphi. After I got a solution of this problem, Now I want the boundary of that combined region. Is there any easy solution?
Thank You.
Edit:
Boundary means the outer most points of region. My region is a polygon region and I want the points of that polygon.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定问题是什么以及您需要对该地区做什么。
您可以使用 GetRgnBox 检索该区域的边界矩形,或 GetRegionData 到检索组成该区域的矩形的尺寸。
有关绘制区域的信息,请参阅 FillRgn 和 FrameRgn API。
I'm not sure what the problem is and what you need to do with the region.
You can use GetRgnBox to retrieve the region's bounding rectangle, or GetRegionData to retrieve the dimensions of the rectangles that make up the region.
For drawing the region, see FillRgn and FrameRgn APIs.