如何为文字添加发光效果
This article was translated from English: Does it need improvement?
TranslatedView the article in English
文本的发光效果是一种视觉效果,它在字符周围创造出一种发光的光环。 这种效果使文本看起来像是在发光,创造出柔和的发光轮廓,可以提高可读性并吸引注意力。
开始使用 IronWord
立即在您的项目中开始使用IronWord,并享受免费试用。
如何为文字添加发光效果
- 下载为文本添加发光效果的 C# 库
- 将文字效果应用于新创建或现有文字
- 配置 发光 对象,并将其赋值给 文本效果 反对
- 将其分配给 文本效果 属性
- 将编辑过的 Word 文档导出为新文件
添加光彩效果
要为文本指定发光效果,您可以首先创建并配置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,它描述了颜色的不透明度。