VstkResource.StrokeStyleLineAlignment
VstkResource.StrokeStyleLineAlignment property
Получает или задает выравнивание линии стиля обводки.
public StrokePosition StrokeStyleLineAlignment { get; set; }
Примеры
Следующий код демонстрирует поддержку ресурса VstkResource.
[C#]
string srcFile = "StrokeShapeTest1.psd";
string dstFile = "StrokeShapeTest2.psd";
using (PsdImage image = (PsdImage)Image.Load(srcFile))
{
Layer layer = image.Layers[1];
foreach (LayerResource resource in layer.Resources)
{
if (resource is VstkResource)
{
VstkResource vstkResource = (VstkResource)resource;
vstkResource.StrokeStyleLineAlignment = StrokePosition.Outside;
vstkResource.StrokeStyleLineWidth = 20;
}
}
image.Save(dstFile);
}
Смотрите также
- enum StrokePosition
- class VstkResource
- пространство имен Aspose.PSD.FileFormats.Psd.Layers.LayerResources.StrokeResources
- сборка Aspose.PSD