Enum LineJoinType

LineJoinType enumeration

Satır Birleştirme türü.

public enum LineJoinType : short

değerler

İsimDeğerTanım
BevelJoin0Eğim birleştirme türü.
RoundJoin1Yuvarlak birleştirme türü.
MiterJoin2Gönye birleştirme türü.

Örnekler

Aşağıdaki kod, VstkResource kaynağının desteğini gösterir.

[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);
}

Ayrıca bakınız