1

我有一个非托管 API,它使用System.Drawing.Regionas 参数。
问题是,我有一个System.Windows.Media.Geometry,我需要将其转换为Region-class。

我想知道我应该如何转换这种类型......我应该寻找角点并转换它们还是已经存在转换方法[我还没有找到]


如果有人需要 a 的示例System.Windows.Media.Geometry,XAML 代码如下所示:

<GeometryGroup>
    <RectangleGeometry Rect="32,0,440,89"/>
    <RectangleGeometry Rect="0,89,472,41"/>
    <RectangleGeometry Rect="472,93,66,193"/>
    <RectangleGeometry Rect="53,130,419,156"/>
    <RectangleGeometry Rect="53,184,38,102"/>
    <RectangleGeometry Rect="91,200,52,86"/>
    <RectangleGeometry Rect="143,216,75,70"/>
    <RectangleGeometry Rect="218,232,52,54"/>
    <RectangleGeometry Rect="270,248,75,38"/>
    <RectangleGeometry Rect="345,264,52,22"/>
    <RectangleGeometry Rect="516,270,22,16"/>
<GeometryGroup/>
4

1 回答 1

1

好的 - 我自己找到了解决方案:

Geometry geo = .... ;

IEnumerable<PolyLineSegment> segments =
    from PathFigure figure in geo.GetOutlinedPathGeometry().Figures
    from PathSegment segment in figure.Segments
    select s as PolyLineSegment;

using (GraphicsPath path = new GraphicsPath())
{
    path.StartFigure();

    foreach (PolyLineSegment plseg in segments)
    {
        PointF[] points = (from point in plseg.Points
                           select new Point((float)point.X, (float)point.Y)).ToArray();

        path.AddPolygon(points);
    }

    path.CloseFigure();

    // DO SOMETHING WITH `path´
}
于 2015-10-05T15:27:49.533 回答