如何為文字添加反射效果
This article was translated from English: Does it need improvement?
TranslatedView the article in English
文字的反射效果是一種視覺增強,它在文字原有形式的下方創造一個鏡像。 此效果模擬文字在表面上的反射,通常增加設計的深度和真實感。
快速開始使用IronWord
立即在您的專案中使用IronWord,並享受免費試用。
如何為文字添加反射效果
- 下載一個C#庫以添加文本反射功能
- 將文字效果應用到新創建或現有的文字上
- 通過實例化應用預設的反射效果 反思 類別
- 配置 反思 屬性以實現自定義文字輪廓
- 將編輯後的 Word 文件導出為新文件
添加反射效果
要為文字指定反射效果,請創建 TextStyle 對象並使用 Reflection 對象填充 ReflectionEffect 屬性。 最後,通過將 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")
VB C#
反射效果屬性
反射效果提供了一系列可調整的屬性,以滿足多樣化的設計需求。 請參閱下列列表以獲得每個屬性的詳細描述:
- SchemeColor:獲取或設置反射效果的配色方案顏色。
- HorizontalSkewAngle:獲取或設定反射效果的水平傾斜角度。 指定的斜角是以度為單位。
- HorizontalScalingFactor:獲取或設置反射效果的水平縮放因子。
- DistanceFromText:取得或設置反射效果與文字或物件的距離。 指定的距離為點数(1/72英寸).
- DirectionAngle:獲取或設置反射效果的方向角。 方向角以度數指定。
- FadeDirectionAngle:獲得或設置反射效果的淡出方向。
- EndPosition:獲取或設置反射效果的結束位置。
- StartPosition:獲取或設置反射效果的起始位置。
- EndingOpacity:獲取或設置反射效果的終止不透明度。
- VerticalScalingFactor:獲取或設置反射效果的垂直縮放因子。
- StartingOpacity:獲取或設置反射效果的起始不透明度。
- 對齊:取得或設定反射效果的對齊方式。
- BlurRadius:獲取或設置反射效果的模糊半徑。 模糊半徑以點為單位指定(1/72英寸).
- VerticalSkewAngle:獲取或設置反射效果的垂直偏斜角度。 指定的斜角是以度為單位。
: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")
VB C#