如何為文字添加陰影效果
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#
陰影效果屬性
除了分配一個預定義的陰影值,所有的陰影效果屬性都可以配置。 這提供了一個非常靈活的選項,可以以任何可能的方式自定義陰影效果。 請參閱下面的屬性及其描述:
- 對齊:取得或設定陰影的對齊方式。
- 模糊半徑:獲取或設置陰影效果的模糊半徑。 模糊半徑以點為單位指定(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#