如何为文本添加反射效果

This article was translated from English: Does it need improvement?
Translated
View the article in English

文本的反射效果是一种视觉增强功能,它在文本原有形式的下方创建一个镜像。 此效果模拟文本在表面的反射,通常为设计增添深度和真实感。

开始使用 IronWord

立即在您的项目中开始使用IronWord,并享受免费试用。

第一步:
green arrow pointer


添加反射效果

要为文本指定反射效果,请创建 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#
定制反射效果