C# 圖片檔讀取:非鎖定檔方法 [Image.FromFile 釋放]

C# 圖片檔讀取:非鎖定檔方法 [Image.FromFile 釋放]

C# 圖片檔讀取:非鎖定檔方法 [Image.FromFile 釋放]

 

資料來源:http://fecbob.pixnet.net/blog/post/38125005

FileStream fs = File.OpenRead(StrDestFilePath); //OpenRead[二進位讀檔]
int filelength = 0;
filelength = (int)fs.Length; //獲得檔長度
Byte[] image = new Byte[filelength]; //建立一個位元組陣列
fs.Read(image, 0, filelength); //按位元組流讀取
System.Drawing.Image result = System.Drawing.Image.FromStream(fs);
fs.Close();

 

 

 



 


One thought on “C# 圖片檔讀取:非鎖定檔方法 [Image.FromFile 釋放]

發表迴響

你的電子郵件位址並不會被公開。 必要欄位標記為 *