ASP.NET MVC 动态加载图像
2020-12-13 01:44
标签:string cti c type name .net public ActionResult
DisplayImage(string fileName) ASP.NET MVC 动态加载图像,搜素材,soscw.com ASP.NET MVC 动态加载图像 标签:string cti c type name .net 原文地址:http://www.cnblogs.com/sungang3225/p/3710700.html
private ImageInfo
CreateImageFile(string fileName)
{
if
(!File.Exists(fileName))
return
null;
Image image =
Image.FromFile(fileName);
MemoryStream ms = new
MemoryStream();
image.Save(ms,
ImageFormat.Png);
image.Dispose();
ImageInfo result = new
ImageInfo();
result.contentType =
"image/png";
result.fileContents =
ms.ToArray();
return result;
}
{
ImageInfo imageInfo =
CreateImageFile(Server.MapPath(fileName));
if (imageInfo ==
null)
return imageInfo == null ? "" : File(imageInfo.fileContents,
imageInfo.contentType);
}