下面做一个实例,通过Request的一些方法来判断浏览图片是不是在内部浏览,还是直接按网址浏览或者被外部使用
复制代码 代码如下:
<%@ WebHandler Language="C#" %>
using System;
using System.Web;
public class image_Test : IHttpHandler {
public void ProcessRequest(HttpContext context)
{
context.Response.ContentType = "image/JPEG";
//如果直接访问URLreferrer 就是null ,如果嵌入到页面中请求
//URLreferrer就是页面的地址
string picPath=HttpContext.Current.Server.MapPath("DSCF0738.JPG");
using (System.Drawing.Bitmap bitmap = new System.Drawing.Bitmap(picPath)) {
using (System.Drawing.Graphics graphic = System.Drawing.Graphics.FromImage(bitmap))
{
//不过还是太脆弱,因为UrlReferrer还是由客户端提交
//迅雷破解毫无鸭梨
if (context.Request.UrlReferrer == null)
{
graphic.Clear(System.Drawing.Color.White);
graphic.DrawString("禁止直接浏览图片", new System.Drawing.Font("宋体", 15),
System.Drawing.Brushes.Red, 0, 0);
}
//http://127.0.0.1:32581/WebSite_zzl01/vivideo_test/request/Request.aspx
else if (context.Request.UrlReferrer.Host != "localhost")
{
graphic.Clear(System.Drawing.Color.White);
graphic.DrawString("图片只允许在博客园内部查看", new System.Drawing.Font("宋体", 15),
System.Drawing.Brushes.Red, 0, 0);
}
//转化成流格式输出
bitmap.Save(context.Response.OutputStream,System.Drawing.Imaging.ImageFormat.Jpeg);
}
}
}
public bool IsReusable {
get {
return false;
}
}
}
html
<img src="https://www.jb51.net/image_Test.ashx" />啦啦啦啦
2、Response
(1)返回 流,以流的形式返回给客户端
* 每次write,往缓存里存,不是直接给浏览器,等到存满了或者处理完成才发送到浏览器
* Flush方法,立即发给浏览器
(2)反盗链等:不往下执行了在aspx写较好
context.Response.End();
(3)aspx 和ashx
像输出文本、图片、下载地址最后是写在ashx里面,而html内容则写在aspx里面
(4)重定向 Redirect
Flush实例:
复制代码 代码如下:
<%@ WebHandler Language="C#" %>
using System;
using System.Web;