Enum TextOrientation

TextOrientation enumeration

文本方向模式的枚举。

public enum TextOrientation

价值观

姓名价值描述
Horizontal0水平文本方向。
Vertical2垂直文本方向。

例子

以下代码演示了编辑新 TextOrientation 属性的能力。这暂时不会影响渲染,但只允许您编辑属性值。

[C#]

string src = "1336test.psd";
string output = "out_1336test.psd";

using (var image = (PsdImage)Image.Load(src))
{
    var textLayer = image.Layers[1] as TextLayer;
    if (textLayer.TextData.TextOrientation == TextOrientation.Vertical)
    {
        // 正确读法
    }
    else
    {
        throw new Exception("Incorrect reading of TextOrientation property value");
    }

    textLayer.TextData.TextOrientation = TextOrientation.Horizontal;
    textLayer.TextData.UpdateLayerData();

    image.Save(output);
}

using (var image = (PsdImage)Image.Load(output))
{
    var textLayer = image.Layers[1] as TextLayer;
    if (textLayer.TextData.TextOrientation == TextOrientation.Horizontal)
    {
        // 正确读法
    }
    else
    {
        throw new Exception("Incorrect reading of TextOrientation property value");
    }
}

也可以看看