如何为文字添加发光效果

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,它描述了颜色的不透明度。

发光效果示例