gpt4 book ai didi

c# - 如何在 ASP.net C# 中将 tiff 图像显示为图像?

转载 作者:太空宇宙 更新时间:2023-11-03 15:21:11 29 4
gpt4 key购买 nike

我使用的是 visual studio 2008,我想转换 .tiff 文件并将其显示为 img。我可以使用从网站获取的 url 显示图像。但是当我使用来自服务器的路径 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);

最佳答案

我曾经在我的应用程序中遇到过一次同样的问题,在我的情况下,这是由于较大的文件大小导致的,在访问它时没有正确加载到内存中。请检查您要显示的文件的大小。希望这个有帮助。

关于c# - 如何在 ASP.net C# 中将 tiff 图像显示为图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37339476/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com