如何為文字添加光暈效果
文字上的光暈效果是一種在字符周圍創建閃耀光環的視覺效果。這種效果使文字看起來像是在發光,創造出柔和的光亮輪廓,可以增強可讀性並吸引注意力。
如何給文字添加光暈效果
- 下載 C# 函式庫以為文字加入發光效果
- 將文字效果應用到新創建或現有的文字上
- 配置 光輝 物件並將其指派給 文字效果 對象
- 將它分配給 文字效果 屬性
- 將編輯後的 Word 文件導出為新文件
安裝與 NuGet
Install-Package IronWord
立即開始在您的專案中使用IronPDF,並享受免費試用。
查看 IronWord 上 Nuget 快速安裝和部署。已被下載超過800萬次,它正用C#改變。
Install-Package IronWord
添加光暈效果
要為文本指定光暈效果,您可以首先創建並配置 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")
Glow Effect Properties
以下是所有的輝光效果屬性及其描述:
- GlowRadius : 獲取或設置輝光效果的半徑。輝光半徑以點數為單位指定 (1/72英寸).
- GlowColor : 獲取或設置發光效果的顏色。
發光效果示例
讓我們看看一些更多的發光效果示例。發光效果的顏色也可以接受 ARGB 值。第一個值是 alpha,描述顏色的透明度。