IText.TextOrientation

IText.TextOrientation property

Получает или задает ориентацию текста.

public TextOrientation TextOrientation { get; set; }

Стоимость имущества

Ориентация текста.

Примеры

Следующий код демонстрирует возможность редактирования нового свойства 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");
    }
}

Смотрите также