码迷,mamicode.com
首页 > Web开发 > 详细

ASP.NET MVC 动态加载图像

时间:2014-05-06 10:01:43      阅读:313      评论:0      收藏:0      [点我收藏+]

标签:string   cti   c   type   name   .net   


        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;
        }

        public ActionResult DisplayImage(string fileName)
        {
            ImageInfo imageInfo = CreateImageFile(Server.MapPath(fileName));
            if (imageInfo == null)
                return imageInfo == null ? "" : File(imageInfo.fileContents, imageInfo.contentType);
        }

    <img src=‘/Home/DisplayImage?fileName=myimage.jpg‘>

 

ASP.NET MVC 动态加载图像,布布扣,bubuko.com

ASP.NET MVC 动态加载图像

标签:string   cti   c   type   name   .net   

原文地址:http://www.cnblogs.com/sungang3225/p/3710700.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!