4. 为啥读个图那么慢?
一般来说,读图可以用以下几种方法:
1 public static Image FromFile(string filename);
2 public static Image FromFile(string filename, bool useEmbeddedColorManagement);
3 public static Bitmap FromHbitmap(IntPtr hbitmap);
4 public static Bitmap FromHbitmap(IntPtr hbitmap, IntPtr hpalette);
5 public static Image FromStream(Stream stream);
6 public static Image FromStream(Stream stream, bool useEmbeddedColorManagement);
7 public static Image FromStream(Stream stream, bool useEmbeddedColorManagement, bool validateImageData);
其中3,4两种方法主要用在从Windows句柄中拿到原来DIB的Bitmap,经常是用在需要读取资源图像啊,或者GDI图像的时候。最经常用的,无非是1,2和5,6,7,其中1和5类似,2和6类似,方法5,6会使用不同的参数调用7。我们可以做一个简单的性能测试。拿一张8000*7000大的TIF图像,这样的图像一般大小都在100M以上,用不同的参数调用方法7, 看到以下结果。
1 {
2 Stopwatch watch = new Stopwatch();
3 watch.Start();
4 FileStream fs = new FileStream(image, FileMode.Open, FileAccess.Read);
5 Image img = Image.FromStream(fs, true, true);
6 Console.WriteLine("Use ICM: {0}. Validate: {1}, ElapsedTicks:{2}.", true, true, watch.ElapsedTicks);
7 watch.Stop();
8 fs.Close();
9 }
10
11 {
12 Stopwatch watch = new Stopwatch();
13 watch.Start();
14 FileStream fs = new FileStream(image, FileMode.Open, FileAccess.Read);
15 Image img = Image.FromStream(fs, false, true);
16 Console.WriteLine("Use ICM: {0}. Validate: {1}, ElapsedTicks:{2}.", false, true, watch.ElapsedTicks);
17 watch.Stop();
18 fs.Close();
19 }
20
21 {
22 Stopwatch watch = new Stopwatch();
23 watch.Start();
24 FileStream fs = new FileStream(image, FileMode.Open, FileAccess.Read);
25 Image img = Image.FromStream(fs, true, false);
26 Console.WriteLine("Use ICM: {0}. Validate: {1}, ElapsedTicks:{2}.", true, false, watch.ElapsedTicks);
27 watch.Stop();
28 fs.Close();
29 }
30
31 {
32 Stopwatch watch = new Stopwatch();
33 watch.Start();
34 ?FileStream fs = new FileStream(image, FileMode.Open, FileAccess.Read);
35 Image img = Image.FromStream(fs, false, false);
36 Console.WriteLine("Use ICM: {0}. Validate: {1}, ElapsedTicks:{2}.", false, false, watch.ElapsedTicks);
37 watch.Stop();
38 fs.Close();
39 }
版权与免责声明
1、本站所发布的文章仅供技术交流参考,本站不主张将其做为决策的依据,浏览者可自愿选择采信与否,本站不对因采信这些信息所产生的任何问题负责。
2、本站部分文章来源于网络,其版权为原权利人所有。由于来源之故,有的文章未能获得作者姓名,署“未知”或“佚名”。对于这些文章,有知悉作者姓名的请告知本站,以便及时署名。如果作者要求删除,我们将予以删除。除此之外本站不再承担其它责任。
3、本站部分文章来源于本站原创,本站拥有所有权利。
4、如对本站发布的信息有异议,请联系我们,经本站确认后,将在三个工作日内做出修改或删除处理。
请参阅权责声明!