有没有人知道在像素中获取WPF几何的长度的有效方法? 我知道WPF中的几何是基于矢量的,因此实际上没有像素长度。但必须能够根据可见的绘制图像获得长度。我的意思是如果我在1024x800像素图像中绘制一些几何图形,则必须能够得到它们的长度。
我在这里错了,或者是否有任何可能有效的方法来获取这些信息?
提前谢谢!
迈克尔
答案 0 :(得分:2)
我已经提出了一个解决方案,但不知道这是否是最有效(最快)的方式。请留下您的意见 - 谢谢大家!
public static double GetLength(this Geometry geo)
{
PathGeometry path = geo.GetFlattenedPathGeometry();
double length = 0.0;
foreach (PathFigure pf in path.Figures)
{
Point start = pf.StartPoint;
foreach (PolyLineSegment seg in pf.Segments)
{
foreach (Point point in seg.Points)
{
length += Distance(start, point);
start = point;
}
}
}
return length;
}
private static double Distance(Point p1, Point p2)
{
return Math.Sqrt(Math.Pow(p1.X - p2.X,2) + Math.Pow(p1.Y - p2.Y,2));
}
答案 1 :(得分:0)
var geometry = new EllipseGeometry(new Point(50,50), 45, 20);
var length = geometry.Bounds.Width; //or geometry.Bounds.Height
注意:EllipseGeometry
只是一个例子。从Geometry
派生的所有类都具有Bounds
属性。