IText.ProducePortions

IText.ProducePortions method

Producerar de nya delarna med indata eller standardparametrar.

public ITextPortion[] ProducePortions(string[] portionsOfText, ITextStyle stylePrototype, 
    ITextParagraph paragraphPrototype)
ParameterTypBeskrivning
portionsOfTextString[]De delar av text som ska skapas nyaITextPortion.
stylePrototypeITextStyleEn stil som, om den inte är null, kommer att tillämpas i den nya, annars kommer att vara standard.
paragraphPrototypeITextParagraphEn paragraf som, om den inte är null, kommer att tillämpas i den nya, annars kommer att vara standard.

Returvärde

Returnerar de nya portionernaITextPortion baserat på ingångsparametrar.

Exempel

Följande exempel visar hur du kan rendera olika stilar i ett textlager i 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; // redigera textstil "E=mc"
    newPortions[1].Style.FontBaseline = FontBaseline.Superscript; // redigera textstil "2\r"
    newPortions[2].Style.FauxBold = true; // redigera textstil "Fet"
    newPortions[3].Style.FauxItalic = true; // redigera textstil "Kursiv\r"
    newPortions[3].Style.BaselineShift = -25; // redigera textstil "Kursiv\r"
    newPortions[4].Style.FontCaps = FontCaps.SmallCaps; // redigera textstil "Små bokstäver"

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

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

Se även