PathResourceConverter
İçindekiler
[
Saklamak
]PathResourceConverter class
DönüştürmePathResource
ileGraphicsPath
ve tam tersi.
public static class PathResourceConverter
yöntemler
İsim | Tanım |
---|---|
static FromGraphicsPath(GraphicsPath, Size) | GraphicsPath yol kaynakları örneği. |
static ToGraphicsPath(PathResource[], Size) | Yol kaynaklarınıGraphicsPath örnek. |
Örnekler
TIFF görüntüsünde Yol Kaynaklarından Grafik Yolu oluşturun.
[C#]
using (var image = (TiffImage)Image.Load("Bottle.tif"))
{
// TIFF görüntüsünden PathResources kullanarak GraphicsPath'i oluşturun
var graphicsPath = PathResourceConverter.ToGraphicsPath(image.ActiveFrame.PathResources.ToArray(), image.ActiveFrame.Size);
var graphics = new Graphics(image);
// Kırmızı çizgi çiz ve görüntüyü kaydet
graphics.DrawPath(new Pen(Color.Red, 10), graphicsPath);
image.Save("BottleWithRedBorder.tif");
}
Grafik Yolu kullanarak Yol Kaynakları oluşturun.
[C#]
static void Main(string[] args)
{
using (var image = (TiffImage)Image.Load("Bottle.tif"))
{
// GraphicsPath için dikdörtgen Şekil oluştur
var figure = new Figure();
figure.AddShape(CreateBezierShape(100f, 100f, 500f, 100f, 500f, 1000f, 100f, 1000f));
// Figürümüzü kullanarak GraphicsPath oluşturun
var graphicsPath = new GraphicsPath();
graphicsPath.AddFigure(figure);
// GraphicsPath kullanarak PathResources'u ayarlayın
var pathResouze = PathResourceConverter.FromGraphicsPath(graphicsPath, image.Size);
image.ActiveFrame.PathResources = new List<PathResource>(pathResouze);
// Resmi kaydet
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]);
}
Ayrıca bakınız
- ad alanı Aspose.Imaging.FileFormats.Tiff.PathResources
- toplantı Aspose.Imaging