如何为文本添加阴影效果
This article was translated from English: Does it need improvement?
TranslatedView the article in English
文本阴影效果是一种视觉增强技术,用于为文本元素创建深度和区分度。 当应用时,它会在原文后面引入一个重复的版本,略微偏移以呈现出阴影的效果。 此次级文本,称为阴影,可以通过多种方式调整,以实现不同的视觉效果。
开始使用 IronWord
立即在您的项目中开始使用IronWord,并享受免费试用。
如何为文本添加阴影效果
- 下载为文本添加阴影效果的 C# 库
- 将文字效果应用于新创建或现有文字
- 的静态命名实例来应用预设的阴影效果。 阴影 类
- 配置 阴影 属性来实现定制的阴影
- 将编辑过的 Word 文档导出为新文件
添加阴影效果
要为文本指定阴影效果,请创建 TextStyle 对象并使用 Shadow 对象填充 ShadowEffect 属性。 最后,通过将 TextStyle 对象分配给 TextEffect 属性来添加具有样式的新文本。
:path=/static-assets/word/content-code-examples/how-to/text-effect-shadow-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()
{
ShadowEffect = Shadow.OuterShadow1,
};
// Add text with style
doc.AddText("Hello World").Style = textStyle;
// Export new Word document
doc.SaveAs("shadowEffect.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 {.ShadowEffect = Shadow.OuterShadow1}
' Add text with style
doc.AddText("Hello World").Style = textStyle
' Export new Word document
doc.SaveAs("shadowEffect.docx")
VB C#
阴影效果属性
除了分配预定义的阴影值外,所有阴影效果的属性都可以配置。 这为以任何可能的方式自定义阴影效果提供了一个非常灵活的选项。 请参阅下面的属性及其描述:
- 对齐:获取或设置阴影的对齐方式。
- BlurRadius:获取或设置阴影效果的模糊半径。 模糊半径以点数指定。(1/72 英寸).
- DirectionAngle:获取或设置阴影效果的方向角度。 指定方向角度为度数。
- DistanceFromText:获取或设置阴影效果与文本或对象的距离。 距离以点数指定。(1/72 英寸).
- HorizontalScalingFactor:获取或设置阴影效果的水平缩放因子。
- HorizontalSkewAngle:获取或设置阴影效果的水平倾斜角度。 偏移角度以度为单位指定。
- SchemeColor:获取或设置阴影效果的配色方案。
- VerticalScalingFactor:获取或设置阴影效果的垂直缩放因子。
- VerticalSkewAngle:获取或设置阴影效果的垂直倾斜角度。 偏移角度以度为单位指定。
:path=/static-assets/word/content-code-examples/how-to/text-effect-customized-shadow-effect.cs
using IronWord;
using IronWord.Models;
using IronWord.Models.Enums;
// Create new Word document
WordDocument doc = new WordDocument();
// Create and configure text style
TextStyle textStyle = new TextStyle();
textStyle.TextEffect = new TextEffect()
{
ShadowEffect = new Shadow()
{
Alignment = RectangleAlignmentValues.BottomLeft,
BlurRadius = 5,
DirectionAngle = 45,
DistanceFromText = 3,
HorizontalScalingFactor = 100,
VerticalScalingFactor = 100,
HorizontalSkewAngle = 0,
SchemeColor = IronWord.Models.Color.Aqua,
VerticalSkewAngle = 0,
},
};
// Add text with style
doc.AddText("Customized shadow").Style = textStyle;
// Export new Word document
doc.SaveAs("customizedShadowEffect.docx");
Imports IronWord
Imports IronWord.Models
Imports IronWord.Models.Enums
' Create new Word document
Private doc As New WordDocument()
' Create and configure text style
Private textStyle As New TextStyle()
textStyle.TextEffect = New TextEffect() With {
.ShadowEffect = New Shadow() With {
.Alignment = RectangleAlignmentValues.BottomLeft,
.BlurRadius = 5,
.DirectionAngle = 45,
.DistanceFromText = 3,
.HorizontalScalingFactor = 100,
.VerticalScalingFactor = 100,
.HorizontalSkewAngle = 0,
.SchemeColor = IronWord.Models.Color.Aqua,
.VerticalSkewAngle = 0
}
}
' Add text with style
doc.AddText("Customized shadow").Style = textStyle
' Export new Word document
doc.SaveAs("customizedShadowEffect.docx")
VB C#