本文介绍了901010-使用C#中的Graphics.DrawImage函数绘制tiff文件内容的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

嗨在以下代码中:

图片img = Image.FromFile( @"  c:\ tmp .tif");
g.DrawImage(img, 0  0 ); 


我收到以下异常:

在System.Drawing.dll中发生了类型为'System.Runtime.InteropServices.ExternalException'的未处理异常

附加信息:GDI +中发生一般错误.
在FromFile函数中.


问题是什么,我该怎么解决?
thx

解决方案


hiin the following code:

Image img = Image.FromFile(@"c:\tmp.tif");
g.DrawImage(img, 0, 0);


i get the following exception:

An unhandled exception of type 'System.Runtime.InteropServices.ExternalException' occurred in System.Drawing.dll

Additional information: A generic error occurred in GDI+.
in FromFile function.


what''s the problem and what can i do to resolve it?
thx

解决方案


这篇关于901010-使用C#中的Graphics.DrawImage函数绘制tiff文件内容的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 08:17