PathResourceConverter

PathResourceConverter class

konvertiertPathResource zuGraphicsPath und umgekehrt.

public static class PathResourceConverter

Methoden

NameBeschreibung
static FromGraphicsPath(GraphicsPath, Size)Konvertiert dieGraphicsPath Instanz zum Pfad von Ressourcen.
static ToGraphicsPath(PathResource[], Size)Konvertiert Pfadressourcen in dieGraphicsPath Instanz.

Beispiele

Grafikpfad aus Pfadressourcen im TIFF-Bild erstellen.

[C#]

using (var image = (TiffImage)Image.Load("Bottle.tif"))
{
    // GraphicsPath mit PathResources aus TIFF-Bild erstellen
    var graphicsPath = PathResourceConverter.ToGraphicsPath(image.ActiveFrame.PathResources.ToArray(), image.ActiveFrame.Size);
    var graphics = new Graphics(image);

    // Rote Linie zeichnen und Bild speichern
    graphics.DrawPath(new Pen(Color.Red, 10), graphicsPath);
    image.Save("BottleWithRedBorder.tif");
}

Erstellen Sie Pfadressourcen mithilfe von Grafikpfaden.

[C#]

static void Main(string[] args)
{
    using (var image = (TiffImage)Image.Load("Bottle.tif"))
    {
        // Rechteckige Figur für GraphicsPath erstellen
        var figure = new Figure();
        figure.AddShape(CreateBezierShape(100f, 100f, 500f, 100f, 500f, 1000f, 100f, 1000f));

        // Erstellen Sie GraphicsPath mit unserer Figur
        var graphicsPath = new GraphicsPath();
        graphicsPath.AddFigure(figure);

        // Setze PathResources mit GraphicsPath
        var pathResouze = PathResourceConverter.FromGraphicsPath(graphicsPath, image.Size);
        image.ActiveFrame.PathResources = new List<PathResource>(pathResouze);

        // Speichern Sie das Bild
        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]);
}

Siehe auch