本文将示范如何利用 System.Drawing 命名空间中的 Graphics Brush 类别来制作出带有浮雕效果的文字。 

程序范例 

 Visual C# 2005 - 如何制作多变化字体之浮雕字

图表1 

Visual C# 2005 - 如何制作多变化字体之浮雕字 

图表2 

图表 1 2 是我们所撰写之程序范例的执行结果。我们主要使用 Graphics 类别的 DrawString 方法,并根据用户所选取的刻度去调整绘图字号,以便制作出带有浮雕效果的文字。程序代码列示如下: 

SizeF textSize;
Graphics g;
Brush myBackBrush = Brushes.Blue;
Brush myForeBrush = Brushes.White;
Font myFont = new Font("Times New Roman",
  (float)this.nudFontSize.Value, FontStyle.Regular);
float xLocation, yLocation;

g = picDemoArea.CreateGraphics();
g.Clear(Color.White);

textSize = g.MeasureString(this.txtShortText.Text, myFont);

xLocation = (picDemoArea.Width - textSize.Width) / 2;
yLocation = (picDemoArea.Height - textSize.Height) / 2;

g.DrawString(txtShortText.Text, myFont, myBackBrush,
  xLocation + (float)this.nudEmbossDepth.Value,
  yLocation + (float)this.nudEmbossDepth.Value);

g.DrawString(txtShortText.Text, myFont, myForeBrush, xLocation,
  yLocation);


相关文章:

  • 2022-03-06
  • 2021-11-18
  • 2021-06-20
  • 2021-12-24
  • 2022-12-23
  • 2021-12-08
  • 2021-11-26
猜你喜欢
  • 2022-03-01
  • 2021-12-16
  • 2021-11-11
  • 2021-11-22
  • 2021-10-06
  • 2021-05-23
  • 2021-11-17
相关资源
相似解决方案