Enum LineJoinType

LineJoinType enumeration

Line Join type.

public enum LineJoinType : short

Values

NameValueDescription
BevelJoin0Bevel join type.
RoundJoin1Rounnd join type.
MiterJoin2Miter join type.

Examples

The following code demonstrates the support of VstkResource resource.

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

See Also