IText.ProducePortions

IText.ProducePortions method

使用输入或默认参数生成新部分。

public ITextPortion[] ProducePortions(string[] portionsOfText, ITextStyle stylePrototype, 
    ITextParagraph paragraphPrototype)
范围类型描述
portionsOfTextString[]要新建的文本部分ITextPortion.
stylePrototypeITextStyle一种样式,如果不为空,将应用于新的,否则将默认。
paragraphPrototypeITextParagraph一个段落,如果不为空,将应用于新的,否则将默认。

返回值

返回新部分ITextPortion基于输入参数。

例子

下面的示例演示了如何在 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; // 编辑文本样式 "Italic\r"
    newPortions[3].Style.BaselineShift = -25; // 编辑文本样式 "Italic\r"
    newPortions[4].Style.FontCaps = FontCaps.SmallCaps; // 编辑文本样式“小写文本”

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

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

也可以看看