IText.TextOrientation
IText.TextOrientation property
الحصول على أو تحديد اتجاه النص.
public TextOrientation TextOrientation { get; set; }
Property_Value
اتجاه النص .
أمثلة
يوضح التعليمة البرمجية التالية القدرة على تحرير خاصية 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");
}
}
أنظر أيضا
- enum TextOrientation
- interface IText
- مساحة الاسم Aspose.PSD.FileFormats.Psd.Layers.Text
- المجسم Aspose.PSD