PathResourceConverter
Contenuti
[
Nascondere
]PathResourceConverter class
convertePathResource
aGraphicsPath
e viceversa.
public static class PathResourceConverter
Metodi
Nome | Descrizione |
---|---|
static FromGraphicsPath(GraphicsPath, Size) | Converte ilGraphicsPath istanza al percorso delle risorse. |
static ToGraphicsPath(PathResource[], Size) | Converte le risorse del percorso inGraphicsPath istanza. |
Esempi
Crea percorso grafico dalle risorse del percorso nell’immagine TIFF.
[C#]
using (var image = (TiffImage)Image.Load("Bottle.tif"))
{
// Crea il GraphicsPath usando PathResources dall'immagine TIFF
var graphicsPath = PathResourceConverter.ToGraphicsPath(image.ActiveFrame.PathResources.ToArray(), image.ActiveFrame.Size);
var graphics = new Graphics(image);
// Disegna una linea rossa e salva l'immagine
graphics.DrawPath(new Pen(Color.Red, 10), graphicsPath);
image.Save("BottleWithRedBorder.tif");
}
Crea risorse di percorso usando il percorso grafico.
[C#]
static void Main(string[] args)
{
using (var image = (TiffImage)Image.Load("Bottle.tif"))
{
// Crea una figura rettangolare per GraphicsPath
var figure = new Figure();
figure.AddShape(CreateBezierShape(100f, 100f, 500f, 100f, 500f, 1000f, 100f, 1000f));
// Crea GraphicsPath usando la nostra figura
var graphicsPath = new GraphicsPath();
graphicsPath.AddFigure(figure);
// Imposta PathResources usando GraphicsPath
var pathResouze = PathResourceConverter.FromGraphicsPath(graphicsPath, image.Size);
image.ActiveFrame.PathResources = new List<PathResource>(pathResouze);
// Salva l'immagine
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]);
}
Guarda anche
- spazio dei nomi Aspose.Imaging.FileFormats.Tiff.PathResources
- assemblea Aspose.Imaging