用Generic Handler(ashx)去显示非二进制的图片
一般情况,显示非二进制的图片(存放在磁盘上的图片文件),直接用图片控件轻易实现。
<img alt="" src="xxx.jpg" />
<asp:Image ID="Image1" runat="server" ImageUrl="xxx.jpg" />
<asp:Image ID="Image1" runat="server" ImageUrl="xxx.jpg" />
由于程序要求,需要把图片文件转为数据流(二进制),再进行显示。因此想起使用Generic Handler(ashx)来处理。
你可以参考下面代码:
View Code
<%@ WebHandler Language="C#" Class="ViewImage" %>
using System;
using System.Data;
using System.Drawing;
using System.IO;
using System.Web;
using System.Web.UI.WebControls;
public class ViewImage : IHttpHandler
{
public void ProcessRequest(HttpContext context)
{
//接收图片路径
string parameter = context.Request.QueryString["file"];
//使用UrlDecode解编码
string path = context.Server.MapPath(HttpUtility.UrlDecode(parameter));
//转为字节
byte[] datas = System.IO.File.ReadAllBytes(path);
//输出数据流
context.Response.OutputStream.Write(datas, 0, datas.Length);
}
public bool IsReusable
{
get
{
return false;
}
}
}
using System;
using System.Data;
using System.Drawing;
using System.IO;
using System.Web;
using System.Web.UI.WebControls;
public class ViewImage : IHttpHandler
{
public void ProcessRequest(HttpContext context)
{
//接收图片路径
string parameter = context.Request.QueryString["file"];
//使用UrlDecode解编码
string path = context.Server.MapPath(HttpUtility.UrlDecode(parameter));
//转为字节
byte[] datas = System.IO.File.ReadAllBytes(path);
//输出数据流
context.Response.OutputStream.Write(datas, 0, datas.Length);
}
public bool IsReusable
{
get
{
return false;
}
}
}
xxx.NavigateUrl = "~/ViewImage.ashx?file=" + fileFullPath;
标签:
Image
, Generic
, Stream
, Binary
, handler
, Ashx
, IHttpHandler
, OutputStream
, UrlDecode
, ReadAllBytes
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 你所不知道的 C/C++ 宏知识
· 聊一聊 操作系统蓝屏 c0000102 的故障分析
· SQL Server 内存占用高分析
· .NET Core GC计划阶段(plan_phase)底层原理浅谈
· .NET开发智能桌面机器人:用.NET IoT库编写驱动控制两个屏幕
· 我干了两个月的大项目,开源了!
· 推荐一款非常好用的在线 SSH 管理工具
· 千万级的大表,如何做性能调优?
· 聊一聊 操作系统蓝屏 c0000102 的故障分析
· .NET周刊【1月第1期 2025-01-05】