winfrom下載伺服器圖片到本地,用C#開啟Windows內建的圖片傳真查看器

來源:互聯網
上載者:User

本文來自:http://blog.csdn.net/destimarve/article/details/3869486

今天為了能實現這個功能,在網上翻了無數資料,都沒有合適的,要麼是VB,要麼不知道怎樣調用。最後,在msdn給出的樣本上找到了答案,具體代碼如下

WebClient myclient = new WebClient();string fileName = @"D:\a.jpg";string address = ConfigurationManager.AppSettings[""].ToString();if (File.Exists(fileName)){    File.Delete(fileName);    myclient.DownloadFile("http://www.baidu.com/img/123.jpg", fileName);}else{    myclient.DownloadFile("http://www.baidu.com/img/123.jpg", @"D:\a.jpg"); }//建立新的系統進程    System.Diagnostics.Process process = new System.Diagnostics.Process();//設定檔案名稱,此處為圖片的真實路徑+檔案名稱    process.StartInfo.FileName = fileName;//此為關鍵區段。設定進程運行參數,此時為已最大化的視窗顯示圖片。    process.StartInfo.Arguments = "rundll32.exe C://WINDOWS//system32//shimgvw.dll,ImageView_Fullscreen";//此項為是否使用Shell執行程式,因系統預設為true,此項也可不設,但若設定必須為true    process.StartInfo.UseShellExecute = true;//此處可以更改進程所開啟表單的顯示樣式,可以不設    process.StartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;process.Start();process.Close(); 

最後的process.Close()方法可以不寫,還可以換成process.WaitForExit()不過後者將會使程式暫停,直到開啟的表單被關閉,程式才會繼續進行。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.