如何确定GDI +路径上的点

时间:2011-06-29 16:01:40

标签: .net gdi+ system.graphics

GDI +(System.Drawing.Graphics in .NET)是否提供了一些方法来确定graphics path上的点?

具体来说,我希望找到一种简单的方法来编写以下函数:

 Point positionAt(GraphicsPath path, Single where)

where一个介于0和1之间的数字,指定沿路径行进的距离。

1 个答案:

答案 0 :(得分:2)

尝试使用GraphicsPath.GetPathData方法:

http://msdn.microsoft.com/en-us/library/ms535534(v=vs.85).aspx