Enum JustificationMode

JustificationMode enumeration

텍스트 정렬 모드입니다.

public enum JustificationMode

가치

이름설명
Left0왼쪽 맞춤 텍스트입니다.
Right1오른쪽 맞춤 텍스트입니다.
Center2가운데 텍스트.

다음 코드는 텍스트 부분의 텍스트 정렬을 설정하기 위한 JustificationMode enum 지원을 보여줍니다.

[C#]

string src = "source1107.psd";
string outputPsd = "output.psd";
string outputPng = "output.png";

using (var image = (PsdImage) Image.Load(src))
{
    var txtLayer = image.AddTextLayer("Text line1\rText line2\rText line3",
        new Rectangle(200, 200, 500, 500));
    var portions = txtLayer.TextData.Items;

    portions[0].Paragraph.Justification = JustificationMode.Left;
    portions[1].Paragraph.Justification = JustificationMode.Right;
    portions[2].Paragraph.Justification = JustificationMode.Center;

    foreach (var portion in portions)
    {
        portion.Style.FontSize = 24;
    }

    txtLayer.TextData.UpdateLayerData();

    image.Save(outputPsd);
    image.Save(outputPng, new PngOptions());
}

또한보십시오