2016-05-20 77 views
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); 
+0

http://stackoverflow.com/questions/37130469/how-display-any-type-of-images-in-asp-net/37131179#37131179 – mohsen

+0

什麼讓我感到奇怪的是你在你的地址中使用端口0「 http://123.456.7.89:00/test/test.tiff」。還是你犯了一個錯字? – Dbuggy

+0

只是一個例子。事實上,這是這樣的。 189.168.0.10:83/test/test.tiff – user3418036

回答

0

我用來獲取這種相同的問題,在我的應用有一次,在我的情況下,它是由於這是不正常的訪問它時加載到內存中較大的文件引起的。請檢查您嘗試顯示的文件的大小。希望得到 幫助。