如何为文本添加反射效果
文字的反射效果是一种视觉增强效果,它可以在文字的原始形态下创建一个镜像。这种效果可以模拟文字在表面上的反射,通常可以增加设计的深度和真实感。
如何为文本添加反射效果
- 下载为文本添加倒影的 C# 库
- 将文字效果应用于新创建或现有文字
- 通过实例化 反思 类
- 配置 反思 属性来实现自定义文本轮廓
- 将编辑过的 Word 文档导出为新文件
安装使用 NuGet
Install-Package IronWord
开始在您的项目中使用IronPDF,并立即获取免费试用。
查看 IronWord 上 Nuget 用于快速安装和部署。它有超过800万次下载,正在使用C#改变。
Install-Package IronWord
添加反射效果
要为文本指定反射效果,请创建TextStyle对象,并在 ReflectionEffect 属性中填入一个Reflection对象。最后,将 TextStyle 对象赋值给 TextEffect 属性,从而添加具有该样式的新文本。
:path=/static-assets/word/content-code-examples/how-to/text-effect-reflection-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()
{
ReflectionEffect = new Reflection(),
};
// Add text with style
doc.AddText("Hello World").Style = textStyle;
// Export new Word document
doc.SaveAs("reflectionEffect.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 {.ReflectionEffect = New Reflection()}
' Add text with style
doc.AddText("Hello World").Style = textStyle
' Export new Word document
doc.SaveAs("reflectionEffect.docx")
反射效果属性
反射效果提供一系列可调属性,以满足不同的设计要求。有关每种属性的详细说明,请参见下表:
- SchemeColor:获取或设置反射效果的方案颜色。
- HorizontalSkewAngle:获取或设置反射效果的水平倾斜角度。倾斜角度以度为单位。
- HorizontalScalingFactor:获取或设置反射效果的水平缩放因子。
- DistanceFromText:获取或设置反射效果与文本或对象的距离。距离以点为单位 (1/72 英寸).
- DirectionAngle:获取或设置反射效果的方向角。方向角以度为单位。
- FadeDirectionAngle:获取或设置反射效果的渐变方向。
- EndPosition:获取或设置倒影效果的结束位置。
- StartPosition:获取或设置反射效果的起始位置。
- EndingOpacity:获取或设置反射效果的结束不透明度。
- VerticalScalingFactor:获取或设置反射效果的垂直缩放因子。
- StartingOpacity:获取或设置反射效果的起始不透明度。
- 对齐方式:获取或设置反射效果的对齐方式。
- BlurRadius:获取或设置反射效果的模糊半径。模糊半径的单位是点 (1/72 英寸).
- 垂直倾斜角度:获取或设置反射效果的垂直倾斜角度。倾斜角度的单位是度。
:path=/static-assets/word/content-code-examples/how-to/text-effect-customized-reflection-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()
{
ReflectionEffect = new Reflection()
{
Alignment = RectangleAlignmentValues.BottomLeft,
BlurRadius = 5,
DirectionAngle = 90,
DistanceFromText = 5,
EndingOpacity = 100,
EndPosition = 10,
FadeDirectionAngle = 90,
HorizontalScalingFactor = 100,
HorizontalSkewAngle = 0,
SchemeColor = IronWord.Models.Color.Gold,
StartingOpacity = 0,
StartPosition = 0,
VerticalScalingFactor = -100,
VerticalSkewAngle = 0,
},
};
// Add text with style
doc.AddText("Customized reflection").Style = textStyle;
// Export new Word document
doc.SaveAs("customizedReflectionEffect.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 {
.ReflectionEffect = New Reflection() With {
.Alignment = RectangleAlignmentValues.BottomLeft,
.BlurRadius = 5,
.DirectionAngle = 90,
.DistanceFromText = 5,
.EndingOpacity = 100,
.EndPosition = 10,
.FadeDirectionAngle = 90,
.HorizontalScalingFactor = 100,
.HorizontalSkewAngle = 0,
.SchemeColor = IronWord.Models.Color.Gold,
.StartingOpacity = 0,
.StartPosition = 0,
.VerticalScalingFactor = -100,
.VerticalSkewAngle = 0
}
}
' Add text with style
doc.AddText("Customized reflection").Style = textStyle
' Export new Word document
doc.SaveAs("customizedReflectionEffect.docx")