如何給文字添加光暈效果

This article was translated from English: Does it need improvement?
Translated
View the article in English

文本上的發光效果是一種視覺效果,它在字符周圍創建一個發光的光暈。 這種效果使文本看起來好像在發光,創造出柔和且發亮的輪廓,可以提高可讀性並吸引注意力。

快速開始使用IronWord

立即在您的專案中使用IronWord,並享受免費試用。

第一步:
green arrow pointer


添加發光效果

要為文本指定發光效果,您可以首先創建並配置 Glow 對象。 然後,從這個Glow對象創建TextEffect對象。 最後,將 TextEffect 指派給文本的 TextEffect 屬性。

:path=/static-assets/word/content-code-examples/how-to/text-effect-glow-effect.cs
using IronWord;
using IronWord.Models;

// Create new Word document
WordDocument doc = new WordDocument();

// Create and configure text style
TextStyle textStyle = new TextStyle();
textStyle.TextEffect = new TextEffect()
{
    GlowEffect = new Glow()
    {
        GlowColor = IronWord.Models.Color.Aqua,
        GlowRadius = 10,
    },
};

// Add text with style
doc.AddText("Hello World").Style = textStyle;

// Export new Word document
doc.SaveAs("glowEffect.docx");
Imports IronWord
Imports IronWord.Models

' Create new Word document
Private doc As New WordDocument()

' Create and configure text style
Private textStyle As New TextStyle()
textStyle.TextEffect = New TextEffect() With {
	.GlowEffect = New Glow() With {
		.GlowColor = IronWord.Models.Color.Aqua,
		.GlowRadius = 10
	}
}

' Add text with style
doc.AddText("Hello World").Style = textStyle

' Export new Word document
doc.SaveAs("glowEffect.docx")
VB   C#
添加光暈效果

發光效果屬性

以下是所有螢光效果屬性及其描述:

  • GlowRadius:獲取或設定發光效果的半徑。 光暈半徑以點數指定。(1/72英寸).
  • GlowColor:獲取或設定發光效果的顏色。

發光效果範例

讓我們看看更多發光效果的例子。 发光效果的颜色也可以接受 ARGB 值。 第一個值是 alpha,它描述了顏色的不透明度。

Glow 效果範例