Enum JustificationMode
JustificationMode enumeration
Le mode d’alignement du texte.
public enum JustificationMode
Valeurs
Nom | Évaluer | La description |
---|---|---|
Left | 0 | Le texte aligné à gauche. |
Right | 1 | Le texte aligné à droite. |
Center | 2 | Le texte central. |
Exemples
Le code suivant illustre la prise en charge de l’énumération JustificationMode pour définir l’alignement du texte pour les portions de texte.
[C#]
string src = "source1107.psd";
string outputPsd = "output.psd";
string outputPng = "output.png";
using (var image = (PsdImage) Image.Load(src))
{
var txtLayer = image.AddTextLayer("Text line1\rText line2\rText line3",
new Rectangle(200, 200, 500, 500));
var portions = txtLayer.TextData.Items;
portions[0].Paragraph.Justification = JustificationMode.Left;
portions[1].Paragraph.Justification = JustificationMode.Right;
portions[2].Paragraph.Justification = JustificationMode.Center;
foreach (var portion in portions)
{
portion.Style.FontSize = 24;
}
txtLayer.TextData.UpdateLayerData();
image.Save(outputPsd);
image.Save(outputPng, new PngOptions());
}
Voir également
- espace de noms Aspose.PSD.FileFormats.Psd
- Assemblée Aspose.PSD