C#MVC使用二進位流顯示圖片

來源:互聯網
上載者:User

標籤:

關於顯示圖片的最好方法當然是img 的src直接指向地址,簡單實用。但是有時候也會使用到使用圖片流顯示圖片的方法。實現也比較簡單(在C# mvc中,java的不瞭解)。具體如下:

1.前台cshtml部分

添加img 標籤,其地址指向背景返回圖片流的方法。

<img src="@Url.Action("ShowImage","ShowImgFromImgByte",new { id="5"})" /><span id="__kindeditor_bookmark_start_14__"></span>

@Url.Action方法有三個參數,方法名、Control名稱、方法參數(參數類型不用寫)

2.後台control部分

/// <summary>/// 本地圖片 /// </summary>/// <returns></returns>public FileResult ShowImage(string id){    string _path = string.Concat(System.AppDomain.CurrentDomain.BaseDirectory, "Content\\images\\longmao.png");    FileStream fs = new FileStream(_path, FileMode.Open);    byte[] byData = new byte[fs.Length];    fs.Read(byData, 0, byData.Length);    fs.Close();    return File(byData, "image/jpg");}

其中返加實值型別為FileResult,不是我們常見的ActionResult,同樣的,return時也是return File().關於mvc的不同傳回型別,大家可以上網瞭解下。

特別說明,這種圖片的展示方法不推薦,使用起來相對比較麻煩。

 

C#MVC使用二進位流顯示圖片

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.