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

أنظر أيضا