[C#.NET]使用圖片

[C#.NET]使用圖片

System.Drawing.Image類別可以讓我們建立、載入、修改及將影像儲存成不同的檔案。

System.Drawing.Bitmap用來處理靜態影像;
System.Drawing.Imaging.Metafile用來處理動態影像;

以下程式碼需匯入System.Drawing命名空間

  
 

1.讀取檔案至image類別


Image myPic = Image.FromFile(@"C:\Documents and Settings\ggyy\My Documents\1.PNG");

2.顯示圖片至pictureBox1

this.pictureBox1.BackgroundImage = myPic;

上述動作只要將Image換成Bitmap,一樣可以完成相同功能。


Bitmap myBit = new Bitmap(@"C:\Documents and Settings\ggyy\My Documents\1.PNG");

如何在控件背景顯示圖片

1.讀取檔案至Bitmap類別

Bitmap myBit = new Bitmap(@"C:\Documents and Settings\ggyy\My Documents\1.PNG");

2.建立控件的Graphics類別

Graphics myGra = this.button2.CreateGraphics();
3.顯示圖片

myGra.DrawImage(myBit, 1, 1, button2.Width, button2.Height);
C#.NET使用圖片.rar
VB.NET使用圖片.rar



若有謬誤,煩請告知,新手發帖請多包涵


Microsoft MVP Award 2010~2017 C# 第四季
Microsoft MVP Award 2018~2022 .NET

Image result for microsoft+mvp+logo