Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在所有浏览器窗口上呈现 jpeg 缓冲区。JPEG 缓冲区正在使用 http 请求从服务器接收。我想使用 VC# 和 html5(MVC 应用程序)来实现这个。你能指导我怎么做吗?
好的,希望我没听错。您有一个最初是 JPEG 编码图像的 byte[] 缓冲区?要在视图中呈现它,只需将其 ebmed 为 base64 字符串:
@model System.Byte[] @{ string filetype = "jpeg"; } <img src="@String.Format("data:image/{0};base64,{1}", filetype, Convert.ToBase64String(Model)))" alt="Something" />