码迷,mamicode.com
首页 > Windows程序 > 详细

c#读取图片文件

时间:2017-06-27 20:50:59      阅读:252      评论:0      收藏:0      [点我收藏+]

标签:close   exce   stream   span   cat   bitmap   路径   sys   class   

 1  /// <summary>
 2         /// 读取图片文件
 3         /// </summary>
 4         /// <param name="path">图片文件路径</param>
 5         /// <returns>图片文件</returns>
 6         private Bitmap ReadImageFile(String path)
 7         {
 8             Bitmap bitmap=null;
 9             try
10             {
11                 FileStream fileStream = File.OpenRead(path);
12                 Int32 filelength = 0;
13                 filelength = (int)fileStream.Length;
14                 Byte[] image = new Byte[filelength];
15                 fileStream.Read(image, 0, filelength);
16                 System.Drawing.Image result = System.Drawing.Image.FromStream(fileStream);
17                 fileStream.Close();
18                 bitmap = new Bitmap(result);
19             }
20             catch (Exception ex)
21             { 
22                 //  异常输出
23             }
24             return bitmap;
25         }

 

c#读取图片文件

标签:close   exce   stream   span   cat   bitmap   路径   sys   class   

原文地址:http://www.cnblogs.com/mohanchen/p/7086915.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!