Interface ITextStyle

ITextStyle interface

واجهة للعمل مع نمط النص

public interface ITextStyle

الخصائص

اسموصف
AutoKerning { get; set; }الحصول على تقنين الأحرف التلقائي أو تعيينه .
AutoLeading { get; set; }الحصول على أو تعيين قيمة تشير إلى ما إذا كان [المسافة البادئة تلقائيًا] .
BaselineShift { get; set; }التحول الأساسي .
ContextualAlternates { get; set; }البدائل السياقية المستخدمة لربط الأحرف معًا.
DiscretionaryLigatures { get; set; }الحروف المركبة التقديرية المستخدمة لربط الحروف ، خاصة في خطوط البرنامج النصي.
FauxBold { get; set; }الحصول على أو تعيين الخط الغامق زائف ممكّن .
FauxItalic { get; set; }الحصول على أو تعيين الخط الغامق زائف ممكّن .
FillColor { get; set; }الحصول على لون التعبئة أو تعيينه.
FontBaseline { get; set; }خط الأساس .
FontCaps { get; set; }غطاء الخط.
FontIndex { get; }يحصل على فهرس الخط.
FontName { get; set; }الحصول على اسم الخط أو تحديده.
FontSize { get; set; }الحصول على حجم الخط أو تحديده.
Fractions { get; set; }يمكن استبدال رموز الكسور بمحرف خاص.
HindiNumbers { get; set; }الحصول على أو تعيين قيمة تشير إلى [الأرقام الهندية] .
HorizontalScale { get; set; }المقياس الأفقي .
IsStandardVerticalRomanAlignmentEnabled { get; set; }الحصول على المحاذاة الرومانية الرأسية القياسية أو تعيينها.Vertical .
Kerning { get; set; }الحصول على تقنين الأحرف أو تعيينه .
LanguageIndex { get; }يحصل على فهرس اللغة .
Leading { get; set; }الحصول على بادئة أو تعيينها .
NoBreak { get; set; }Gets ot يعين قيمة no break.
StandardLigatures { get; set; }الأحرف المزدوجة السياقية القياسية المستخدمة لربط الأحرف معًا.
Strikethrough { get; set; }الحصول على أو تعيين قيمة تشير إلى ما إذا كان [يتوسطه خط] .
StrokeColor { get; set; }الحصول على لون الحد أو تعيينه .
Tracking { get; set; }الحصول على التتبع أو تعيينه.
Underline { get; set; }الحصول على أو تعيين قيمة تشير إلى ما إذا كان [تسطير] .
VerticalScale { get; set; }المقياس العمودي .

طُرق

اسموصف
Apply(ITextStyle)يطبق النمط المحدد .
IsEqual(ITextStyle)لتحديد ما إذا كان النمط المحدد متساويًا.

أمثلة

يوضح المثال التالي كيف يمكنك عرض أنماط مختلفة في طبقة نص واحدة في Aspose.PSD

[C#]

string sourceFile = "text212.psd";
string etalonFile = "Ethalon_text212.psd";
string outputFile = "Output_text212.psd";

using (var img = (PsdImage)Image.Load(sourceFile))
{
    TextLayer textLayer = (TextLayer)img.Layers[1];
    IText textData = textLayer.TextData;
    ITextStyle defaultStyle = textData.ProducePortion().Style;
    ITextParagraph defaultParagraph = textData.ProducePortion().Paragraph;
    defaultStyle.FillColor = Color.DimGray;
    defaultStyle.FontSize = 51;

    textData.Items[1].Style.Strikethrough = true;

    ITextPortion[] newPortions = textData.ProducePortions(
        new string[]
        {
          "E=mc", "2\r", "Bold", "Italic\r",
          "Lowercasetext"
        },
        defaultStyle,
        defaultParagraph);

    newPortions[0].Style.Underline = true; // تحرير نمط النص "E = mc"
    newPortions[1].Style.FontBaseline = FontBaseline.Superscript; // تحرير نمط النص "2 \ r"
    newPortions[2].Style.FauxBold = true; // تحرير نمط النص "غامق"
    newPortions[3].Style.FauxItalic = true; // تحرير نمط النص "مائل \ r"
    newPortions[3].Style.BaselineShift = -25; // تحرير نمط النص "مائل \ r"
    newPortions[4].Style.FontCaps = FontCaps.SmallCaps; // تحرير نمط النص "النص السفلي"

    foreach (var newPortion in newPortions)
    {
        textData.AddPortion(newPortion);
    }

    textData.UpdateLayerData();
    img.Save(outputFile);
}

يوضح الكود التالي كيفية الحصول على حجم الخط لأي جزء نص في طبقة النص.

[C#]

// استخرج حجم خط خاطئ 
string filePath = "直播+电商.psd";

var tolerance = 0.001;
using (var image = Image.Load(filePath))
{
    int layerIndex = 22;

    // واجهة برمجة التطبيقات القديمة (باستخدام خط الفقرة الأولى)
    PsdImage psdImage = image as PsdImage;
    double[] matrix = ((TextLayer)psdImage.Layers[layerIndex]).TransformMatrix;
    double baseFontSize = ((TextLayer)psdImage.Layers[layerIndex]).Font.Size;
    double fontSize = matrix[0] * baseFontSize;

    // التحقق من حجم الخط الأساسي
    if (Math.Abs(100.0 - baseFontSize) > tolerance)
    {
        throw new Exception("Font size was read incorrect");
    }

    // التحقق من حجم الخط الحقيقي
    if (Math.Abs(88.425 - fontSize) > tolerance)
    {
        throw new Exception("TransformMatrix was read incorrect");
    }

    // واجهة برمجة تطبيقات جديدة (قد تحتوي طبقة نصية واحدة على أي كمية من أحجام الخطوط)
    ITextPortion[] portions = ((TextLayer)psdImage.Layers[layerIndex]).TextData.Items;
    ITextStyle style = portions[0].Style;
    double fontSizeOfPortion = matrix[0] * style.FontSize;

    // التحقق من حجم خط الجزء الأساسي
    if (Math.Abs(100.0 - style.FontSize) > tolerance)
    {
        throw new Exception("Font size was read incorrect");
    }

    // التحقق من حجم خط الجزء الحقيقي
    if (Math.Abs(88.425 - fontSizeOfPortion) > tolerance)
    {
        throw new Exception("TransformMatrix was read incorrect");
    }
}

يوضح مثال الكود التالي تحرير أجزاء النص ونمط نصها.

[C#]

const double Tolerance = 0.0001;
var filePath = "ThreeColorsParagraphs.psd";
var outputPath = "ThreeColorsParagraph_out.psd";
using (var im = (PsdImage)Image.Load(filePath))
{
    for (int i = 0; i < im.Layers.Length; i++)
    {
        var layer = im.Layers[i] as TextLayer;

        if (layer != null)
        {
            var portions = layer.TextData.Items;

            if (portions.Length != 4)
            {
                throw new Exception();
            }

            // فحص النص من كل جزء
            if (portions[0].Text != "Old " ||
                portions[1].Text != "color" ||
                portions[2].Text != " text\r" ||
                portions[3].Text != "Second paragraph\r")
            {
                throw new Exception();
            }

            // التحقق من بيانات الفقرات
            // الفقرات لها مبررات مختلفة
            if (
                (int)portions[0].Paragraph.Justification != 0 ||
                (int)portions[1].Paragraph.Justification != 0 ||
                (int)portions[2].Paragraph.Justification != 0 ||
                (int)portions[3].Paragraph.Justification != 2)
            {
                throw new Exception();
            }

            // جميع الخصائص الأخرى للفقرة الأولى والثانية متساوية
            for (int j = 0; j < portions.Length; j++)
            {
                var paragraph = portions[j].Paragraph;

                if (Math.Abs(paragraph.AutoLeading - 1.2) > Tolerance ||
                    paragraph.AutoHyphenate != false ||
                    paragraph.Burasagari != false ||
                    paragraph.ConsecutiveHyphens != 8 ||
                    Math.Abs(paragraph.StartIndent) > Tolerance ||
                    Math.Abs(paragraph.EndIndent) > Tolerance ||
                    paragraph.EveryLineComposer != false ||
                    Math.Abs(paragraph.FirstLineIndent) > Tolerance ||
                    paragraph.GlyphSpacing.Length != 3 ||
                    Math.Abs(paragraph.GlyphSpacing[0] - 1) > Tolerance ||
                    Math.Abs(paragraph.GlyphSpacing[1] - 1) > Tolerance ||
                    Math.Abs(paragraph.GlyphSpacing[2] - 1) > Tolerance ||
                    paragraph.Hanging != false ||
                    paragraph.HyphenatedWordSize != 6 ||
                    paragraph.KinsokuOrder != 0 ||
                    paragraph.LetterSpacing.Length != 3 ||
                    Math.Abs(paragraph.LetterSpacing[0]) > Tolerance ||
                    Math.Abs(paragraph.LetterSpacing[1]) > Tolerance ||
                    Math.Abs(paragraph.LetterSpacing[2]) > Tolerance ||
                    paragraph.LeadingType != LeadingMode.Auto ||
                    paragraph.PreHyphen != 2 ||
                    paragraph.PostHyphen != 2 ||
                    Math.Abs(paragraph.SpaceBefore) > Tolerance ||
                    Math.Abs(paragraph.SpaceAfter) > Tolerance ||
                    paragraph.WordSpacing.Length != 3 ||
                    Math.Abs(paragraph.WordSpacing[0] - 0.8) > Tolerance ||
                    Math.Abs(paragraph.WordSpacing[1] - 1.0) > Tolerance ||
                    Math.Abs(paragraph.WordSpacing[2] - 1.33) > Tolerance ||
                    Math.Abs(paragraph.Zone - 36.0) > Tolerance)
                {
                    throw new Exception();
                }
            }

            // التحقق من بيانات النمط
            // الأنماط لها ألوان مختلفة وحجم الخط
            if (Math.Abs(portions[0].Style.FontSize - 12) > Tolerance ||
                Math.Abs(portions[1].Style.FontSize - 12) > Tolerance ||
                Math.Abs(portions[2].Style.FontSize - 12) > Tolerance ||
                Math.Abs(portions[3].Style.FontSize - 10) > Tolerance)
            {
                throw new Exception();
            }

            if (portions[0].Style.FillColor != Color.FromArgb(255, 145, 0, 0) ||
                portions[1].Style.FillColor != Color.FromArgb(255, 201, 128, 2) ||
                portions[2].Style.FillColor != Color.FromArgb(255, 18, 143, 4) ||
                portions[3].Style.FillColor != Color.FromArgb(255, 145, 42, 100))
            {
                throw new Exception();
            }

            for (int j = 0; j < portions.Length; j++)
            {
                var style = portions[j].Style;

                if (style.AutoLeading != true ||
                    style.HindiNumbers != false ||
                    style.Kerning != 0 ||
                    style.Leading != 0 ||
                    style.StrokeColor != Color.FromArgb(255, 175, 90, 163) ||
                    style.Tracking != 50)
                {
                    throw new Exception();
                }
            }

            // مثال على تحرير النص
            portions[0].Text = "Hello ";
            portions[1].Text = "World";

            // مثال على إزالة أجزاء النص
            layer.TextData.RemovePortion(3);
            layer.TextData.RemovePortion(2);

            // مثال على إضافة جزء نصي جديد
            var createdPortion = layer.TextData.ProducePortion();
            createdPortion.Text = "!!!\r";
            layer.TextData.AddPortion(createdPortion);

            portions = layer.TextData.Items;

            // مثال على تحرير الفقرة والنمط للأجزاء
            // ضبط التبرير الصحيح
            portions[0].Paragraph.Justification = JustificationMode.Right;
            portions[1].Paragraph.Justification = JustificationMode.Right;
            portions[2].Paragraph.Justification = JustificationMode.Right;

            // ألوان مختلفة لكل نمط. سيتم تغيير ، ولكن التقديم غير مدعوم بشكل كامل
            portions[0].Style.FillColor = Color.Aquamarine;
            portions[1].Style.FillColor = Color.Violet;
            portions[2].Style.FillColor = Color.LightBlue;

            // خط مختلف. سيتم تغيير ، ولكن التقديم غير مدعوم بشكل كامل
            portions[0].Style.FontSize = 6;
            portions[1].Style.FontSize = 8;
            portions[2].Style.FontSize = 10;

            layer.TextData.UpdateLayerData();

            im.Save(outputPath, new PsdOptions(im));

            break;
        }
    }
}

أنظر أيضا