我正在使用visual studio 2008,我想转换.tiff文件并将其显示为img。我可以使用网站上的网址来显示图片。但是当我使用来自服务器的路径url时,它说该参数无效。我在互联网上搜索所有内容,但无法找到可以修复它的解决方案。希望你能帮助我。提前致谢。 这是我的代码。
string filename = "";
file_name = "https://support.leadtools.com/SupportPortal/CS/forums/44475/PostAttachment.aspx"; (This is the link i get from website. It successfully display the image)
// but when im using this to get the tiff it says parameter is not valid. The path i show below is just an example
filename = "http://123.456.7.89:00/test/test.tiff";
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(file_name);
request.Method = "GET";
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
Stream s = response.GetResponseStream();
Bitmap bm = new Bitmap(s);
答案 0 :(得分:0)
我过去常常在我的应用程序中遇到同样的问题,在我的情况下,这是由于文件大小较大而导致的,在访问它时没有正确加载到内存中。请检查您要显示的文件大小。希望如此 帮助