2
即時通訊使用Visual Studio 2008,我想轉換.tiff文件並將其顯示給img。我可以使用來自網站的URL獲取圖像。但是,當我使用從服務器的路徑URL它說,該參數無效。我在互聯網上搜索了所有內容,但找不到可以解決問題的解決方案。希望你能幫助我。提前致謝。 繼承人我的代碼。如何將tiff圖像顯示到ASP.net C#中的圖像?
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);
http://stackoverflow.com/questions/37130469/how-display-any-type-of-images-in-asp-net/37131179#37131179 – mohsen
什麼讓我感到奇怪的是你在你的地址中使用端口0「 http://123.456.7.89:00/test/test.tiff」。還是你犯了一個錯字? – Dbuggy
只是一個例子。事實上,這是這樣的。 189.168.0.10:83/test/test.tiff – user3418036