首页后端开发ASP.NET理解HttpHandler,并为所有*.jpg图片生成一段文字于图片上

理解HttpHandler,并为所有*.jpg图片生成一段文字于图片上

时间2024-02-01 07:36:02发布访客分类ASP.NET浏览447
导读:收集整理的这篇文章主要介绍了理解HttpHandler,并为所有*.jpg图片生成一段文字于图片上,觉得挺不错的,现在分享给大家,也给大家做个参考。 接口IHttpHandler的定义如...
收集整理的这篇文章主要介绍了理解HttpHandler,并为所有*.jpg图片生成一段文字于图片上,觉得挺不错的,现在分享给大家,也给大家做个参考。 接口IHttpHandler的定义如下:
复制代码 代码如下:
interface IHttpHandler
{
void PRocessRequest(HttpContext ctx);
bool IsReuseable { get; }

1新建一网站,名为MyHttpHandlertest
2右击添加,选择类库,取名为MyHttpHandler
3-在上一步新建的类库上右键添加System.Web引用

主要代码:
复制代码 代码如下:
using System;
using System.Collections.Generic;
using System.Text;
using System.Web;
using System.Web.Sessionstate;
namespace MyHttpHandler
{
public class Class1:IHttpHandler,IRequiresSessionState
{
#region IHttpHandler成员
public bool IsReusable
{
get { return true; }
}

public void ProcessRequest(HttpContext context)
{
context.Response.WrITe("handler处理");
}
#endregion
}
}

4-在MyHttpHandler类库上右键,生成,取名为MyHttpHandler

5-在web.config中的system.web节点中天下如下节点
httpHandlers>
add verb="*" path="Handler1.aspx" tyPE="MyHttpHandler.Class1,MyHttpHandler"/>
!--
配置文件中的选项说明:

· verb可以是"GET"或"POST",表示对GET或POST的请求进行处理。"*"表示对所有请求进行处理。

· Path指明对相应的文件进行处理,"*.aspx"表示对发给所有ASPX页面的请求进行处理。可以指明路径,如"/test/*.aspx",表明只对test目录下的ASPX文件进行处理。

· Type属性中,逗号前的字符串指明HttpHandler的实现类的类名,后面的字符串指明Dll文件的名称。

格式如:type="自定义HttpHandler的实现类的全名,自定义HttpHandler的实现类的命名空间(即Dll名)"

或 type="自定义HttpHandler的实现类的全名"
-->
/httpHandlers>
6-在MyHttpHandlerTest右键添加引用,选择项目找到刚才编译后的.dll文件

7-运行Handler1.aspx,页面显示:

下面我们利用HttpHandler将一段文字生成于图片中
添加一个类,默认为Class.cs
复制代码 代码如下:
using System;
using System.Collections.Generic;
using System.Text;
using System.Web;
using System.Web.SessionState;
using System.Drawing;
/// summary>
/// Class1 的摘要说明
/// /summary>
public class Class1:IHttpHandler
{
public Class1()
{
//
// TODO: 在此处添加构造函数逻辑
//
}
public bool IsReusable
{
get { return true; }
}
private static Image OldImage = null;
private static Image GetOldImage(HttpContext context)
{
if (OldImage == null)
{
OldImage = Image.FromFile(context.Server.MapPath("~/Images/Old.jpg"));
}
return OldImage.Clone() as Image;
}
public void ProcessRequest(HttpContext context)
{
Image newimage = GetOldImage(context);
Graphics gh = Graphics.FromImage(newimage);
Font font = new Font("Monaco", 24.0f, FontStyle.Regular);
string writetext = HttpUtility.UrlEncode(context.Request.QueryString["writetext"]);
gh.DrawString(HttpUtility.UrlDecode(writetext), font, new Solidbrush(Color.LightBlue), 20.0f, newimage.Height - font.Height - 30);
newimage.Save(context.Response.OutputStream, System.Drawing.Imaging.ImageFormat.Jpeg);
gh.Dispose();
newimage.Dispose();
}
}

新建一个.aspx页面,添加一个HyperLink控件,再在其.cs文件中添加一段代码传值
复制代码 代码如下:
protected void Page_Load(object sender, Eventargs e)
{
HyperLink1.navigateUrl = "img.jpg?writetext=" + HttpUtility.UrlEncode("大蜗牛");
}

另外还需在web.config文件中将httpHandlers节点中改为如下
add verb="*" path="*.jpg" type="Class1"/>
表明对所有的.jpg格式的文件才会处理
参考《道不远人 深入解析asp.net 2.0控件开发》

声明:本文内容由网友自发贡献,本站不承担相应法律责任。对本内容有异议或投诉,请联系2913721942#qq.com核实处理,我们将尽快回复您,谢谢合作!

上一篇: Ext.net中的MessageBox的简单应用...下一篇:关于服务器或虚拟主机不支持 Aja...猜你在找的ASP.NET相关文章 C# 一些面试试题的实例教程2022-05-16.NET 6开发TodoList应用之请求日志组件HttpLogging介绍2022-04-16.NET 6中间件Http Logging使用介绍2022-04-16gojs一些实用的高级用法2022-04-16.NET6开发TodoList应用之实现查询排序2022-04-16.NET6开发TodoList应用之实现数据塑形2022-04-16.NET微服务架构CI/CD自动打包镜像2022-04-16Asp.Net Core 使用Monaco Editor 实现代码编辑器功能2022-04-16.NET微服务架构CI/CD自动构建Jenkins+Gitee2022-04-16.Net Core微服务网关Ocelot集成Consul2022-04-16 其他相关热搜词更多phpjavapython程序员loadpost-format-gallery

若转载请注明出处: 理解HttpHandler,并为所有*.jpg图片生成一段文字于图片上
本文地址: https://pptw.com/jishu/595108.html
使用JSX实现Carousel轮播组件的方法(前端组件化) 在Vue.js中加载字体的正确方法

游客 回复需填写必要信息