close
情境:
前一篇建好Bitmap後就要在上面用Graphics開始寫字了。
目標:
1.建立Bitmap
2.用Graphics 開始再Bitmap裡面寫字並匯出圖片。
3.產出圖片
作法:
1.建立bitmap
int Bx = 100, By = 50;
Bitmap B1 = new Bitmap(Bx, By);
2.建立Graphics
Graphics G1 = Graphics.FromImage(B1);
System.Drawing.Color TextColor = ColorTranslator.FromHtml("#000000");//設定文字顏色
SolidBrush TextBrush = new SolidBrush(TextColor);//建立畫筆
System.Drawing.Font FontStyle = new System.Drawing.Font("標楷體", (float)15);
3.開始寫字,存成圖片檔
G1.DrawString(ShortCname, FontStyle, TextBrush, 0, 0);
B1.Save(@"你的路徑.png", ImageFormat.Png);
解說:
這樣就會建立一個圖片檔了,Graphics 其實還可以畫出斜線方形等等,
但目前還沒用到,所以先介紹寫字的方式。
文章標籤
全站熱搜
留言列表