String SourceLoc = "D:/Images/photo.jpg";String DestinationLoc = "D:/Images/TestImage.jpg";FileStream fs = new FileStream(SourceLoc, FileMode.Open,FileAccess.Read);byte[] ImageData = new byte[fs.Length];fs.Read(ImageData,0,System.Convert.ToInt32(fs.Length));fs.Close(); 相关文章: 2022-02-13 1970-01-01 2021-09-05 2021-05-28 2022-12-23 2022-12-23 2022-12-23 2022-12-23