如何為文字添加光暈效果

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

文字上的光暈效果是一種在字符周圍創建閃耀光環的視覺效果。這種效果使文字看起來像是在發光,創造出柔和的光亮輪廓,可以增強可讀性並吸引注意力。

C# NuGet 程式庫用于

安裝與 NuGet

Install-Package IronWord
C# NuGet 程式庫用于

安裝與 NuGet

Install-Package IronWord
Java PDF JAR

下載 DLL

下載DLL

手動安裝到您的項目中

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

第一步:
green arrow pointer

查看 IronWordNuget 快速安裝和部署。已被下載超過800萬次,它正用C#改變。

C# NuGet 程式庫用于 nuget.org/packages/IronWord/
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")
VB   C#
添加光暈效果

Glow Effect Properties

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

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

發光效果示例

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

Glow 效果範例