PathResourceConverter

PathResourceConverter class

KonverterarPathResource tillGraphicsPath och vice versa.

public static class PathResourceConverter

Metoder

namnBeskrivning
static FromGraphicsPath(GraphicsPath, Size)KonverterarGraphicsPath instans till sökvägsresurser.
static ToGraphicsPath(PathResource[], Size)Konverterar sökvägsresurser tillGraphicsPath instans.

Exempel

Skapa grafiksökväg från sökvägsresurser i TIFF-bild.

[C#]

using (var image = (TiffImage)Image.Load("Bottle.tif"))
{
    // Skapa GraphicsPath med PathResources från TIFF-bilden
    var graphicsPath = PathResourceConverter.ToGraphicsPath(image.ActiveFrame.PathResources.ToArray(), image.ActiveFrame.Size);
    var graphics = new Graphics(image);

    // Rita röd linje och spara bilden
    graphics.DrawPath(new Pen(Color.Red, 10), graphicsPath);
    image.Save("BottleWithRedBorder.tif");
}

Skapa sökvägsresurser med hjälp av grafisk sökväg.

[C#]

static void Main(string[] args)
{
    using (var image = (TiffImage)Image.Load("Bottle.tif"))
    {
        // Skapa rektangulär figur för GraphicsPath
        var figure = new Figure();
        figure.AddShape(CreateBezierShape(100f, 100f, 500f, 100f, 500f, 1000f, 100f, 1000f));

        // Skapa GraphicsPath med vår figur
        var graphicsPath = new GraphicsPath();
        graphicsPath.AddFigure(figure);

        // Ställ in PathResources med GraphicsPath
        var pathResouze = PathResourceConverter.FromGraphicsPath(graphicsPath, image.Size);
        image.ActiveFrame.PathResources = new List<PathResource>(pathResouze);

        // Spara bilden
        image.Save("BottleWithRectanglePath.tif");
    }
}

private static BezierShape CreateBezierShape(params float[] coordinates)
{
    var bezierPoints = CoordinatesToBezierPoints(coordinates).ToArray();
    return new BezierShape(bezierPoints, true);
}

private static IEnumerable<PointF> CoordinatesToBezierPoints(float[] coordinates)
{
    for (var coordinateIndex = 0; coordinateIndex < coordinates.Length; coordinateIndex += 2)
        for (var index = 0; index < 3; index++)
            yield return new PointF(coordinates[coordinateIndex], coordinates[coordinateIndex + 1]);
}

Se även