首页 > 代码库 > <img>标签显示本地路径的图片的.NET解决方案
<img>标签显示本地路径的图片的.NET解决方案
今天朋友问了我一个奇怪的需求:项目中要求图片上传到工作目录,上传后要在网页中通过<img>显示出来。图片上传后显示,在开发中常见的做法是将它图片上传到网站目录下(upload/),如果保存到别的目录(如:d:/upload),再用<img src="d:/upload/xxx.jpg"> 是找不到图片的。
想到了两种解决方法:
第一种:给路径加上"file://" (File协议主要用于访问本地计算机中的文件),目前只有ie下能正常显示
<img src="file:///d:/upload/xxx.jpg" />
第二种做法:创建一般处理程序(ShowLocalImg.ashx) ,再调用context.Response.WriteFile()
以下部分代码示例:
Upload.html
<html xmlns="http://www.w3.org/1999/xhtml"><head> <title></title></head><body> <form action="Upload.ashx" method="post" enctype="multipart/form-data"> <input type="file" name="pic" /> <input type="submit" value="http://www.mamicode.com/Upload" /> </form></body></html>
Upload.ashx
public void ProcessRequest(HttpContext context)
{ context.Response.ContentType = "text/html"; HttpPostedFile file = context.Request.Files["pic"]; if (file != null) { String filePath = "c:/upload/" + file.FileName; file.SaveAs( filePath ); context.Response.Write(String.Format("<img src=http://www.mamicode.com/‘./ShowLocalImage.ashx?path={0}‘ />",
context.Server.UrlEncode(filePath))); } }
ShowLocalImage.ashx
public void ProcessRequest(HttpContext context){ context.Response.ContentType = "image/jpeg"; String filePath = context.Request["path"]; if (filePath != null) { if (File.Exists(filePath)) { context.Response.WriteFile( filePath ); } }}
注意:如果要对图片进行定制(做成缩略图、部分显示等),则可以在ShowLocalImg.ashx中用Graphic。。
<img>标签显示本地路径的图片的.NET解决方案
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。