标签: c# wcf file bytearray
我有一个byte [],其中包含代表图像的所有数据。如何在浏览器中将其作为实际图像提供?以下代码仅返回字节列表: -
List<HubAsset> hubAsset = _core.GetHubAssets(query); byte[] file = Convert.FromBase64String(hubAsset[0].Data); return file;
答案 0 :(得分:0)
这已经在SO上了:
Streaming byte[] to Image in ASP.NET C#