Visual C# 2005 - 如何製作多變化字體之陰影字

摘要:Visual C# 2005 - 如何製作多變化字體之陰影字

.Net Framework  System.Drawing 命名空間中的 Graphics  Brush類別可以讓我們輕易對文字做出繪圖變化。在此,我們將示範如何運用筆刷來產生帶有陰影效果的文字。 

程式範例 


圖表1

 


圖表2
 

我們所撰寫的程式範例示範如何利用 Graphics 類別的 DrawString 方法,來根據使用者所選取的設定繪製出帶有陰影效果的文字。程式執行結果如圖表 1 2 所示,相關程式碼列示如下: 

SizeF textSize;
Graphics g;
Brush myShadowBrush = Brushes.Gray;
Brush myForeBrush = Brushes.Blue;
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, myShadowBrush,
  xLocation + (float)this.nudShadowDepth.Value,
  yLocation + (float)this.nudShadowDepth.Value);

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