- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章ASP.NET 图片加水印防盗链实现代码由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
首先建一个类: 。
复制代码代码如下
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Drawing; /// <summary> ///Class1 的摘要说明 /// </summary> public class Class1:IHttpHandler //调用接口 { public Class1() { // //TODO: 在此处添加构造函数逻辑 // } public bool IsReusable { get { return true; } } public void ProcessRequest(HttpContext context) { HttpRequest req = context.Request; if (req.UrlReferrer != null && req.UrlReferrer.Host.Length > 0) //反盗链代码判断 { System.Drawing.Image img = System.Drawing.Image.FromFile(context.Request.PhysicalPath); System.Drawing.Graphics g = Graphics.FromImage(img); g.DrawString("三国演义", new Font("宋体", 20, FontStyle.Bold), Brushes.White, 10, 10); img.Save(context.Response.OutputStream, System.Drawing.Imaging.ImageFormat.Jpeg); context.Response.Flush(); context.Response.End(); } else { context.Response.Write("您不能盗链本站图片"); } } } 。
在web.config中注册接口: 。
复制代码代码如下
<httpHandlers> <add verb="*" path="images/*.jpg" type="Class1,App_Code"/> </httpHandlers> 。
url:http://greatverve.cnblogs.com/archive/2011/12/20/asp-net-hotlinking.html 参考: 1.修改web.config 。
复制代码代码如下
<system.web> <httpHandlers> <remove verb="*" path="*.asmx"/> <!--解决图片防盗链问题--> <add verb="*" path="*.jpg" type="MyHttpHandler.Watermark"/> <add verb="*" path="*.gif" type="MyHttpHandler.Watermark"/> <add verb="*" path="*.png" type="MyHttpHandler.Watermark"/> </httpHandlers> </system.web> 。
2.添加一个一般执行文件Watermark.ashx,代码如下: 。
复制代码代码如下
using System; using System.Data; using System.Web; using System.Collections; using System.Web.Services; using System.Web.Services.Protocols; using System.Drawing.Imaging; using System.Drawing; using System.IO; namespace MyHttpHandler { /// <summary> /// Summary description for $codebehindclassname$ /// </summary> [WebService(Namespace = "http://tempuri.org/")] [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] public class Watermark : IHttpHandler { public bool IsReusable { get { return false; } } public void ProcessRequest(HttpContext context) { //设置客户端缓冲时间过期时间为0,即立即过期 //context.Response.Expires = 0; //清空服务器端为此会话开启的输出缓存 //context.Response.Clear(); //设置输出文件类型 context.Response.ContentType = "image/jpg"; //将请求文件写入到输出缓存中 #region 获取XML配置信息 DataSet dsConfing = new DataSet(); string watermarkConfigPath = context.Server.MapPath("~/Config/WaterMarkConfig.xml"); if (System.IO.File.Exists(watermarkConfigPath)) dsConfing.ReadXml(watermarkConfigPath); else { //添加默认的水印配置 } DataRow drConfing = dsConfing.Tables[0].Rows[0]; #endregion string currentHost = drConfing["allowhost"].ToString(); //判断是否是本地网站引用图片,如果是则返回正确的图片 if (context.Request.Url.Authority.Equals(currentHost, StringComparison.InvariantCultureIgnoreCase)) { string localPath = context.Request.Url.LocalPath; localPath = localPath.Remove(localPath.LastIndexOf('/')).ToLower();// "/images/userphoto" if (drConfing["isflag"].Equals("true") && drConfing["files"].ToString().ToLower().IndexOf(localPath) > 0) { #region 水印代码 string sImgStartPhysicalPath = context.Request.PhysicalPath; System.Drawing.Image imgStart = System.Drawing.Image.FromFile(sImgStartPhysicalPath); //备份原图片 //int indexOf = sImgStartPhysicalPath.LastIndexOf("."); //string bakPath = sImgStartPhysicalPath.Remove(indexOf) + "_bak" + sImgStartPhysicalPath.Substring(indexOf); //imgStart.Save(bakPath); Graphics gh = System.Drawing.Graphics.FromImage(imgStart); if (drConfing["type"].Equals("img")) { System.Drawing.Image imgWatermark = System.Drawing.Image.FromFile(context.Server.MapPath(drConfing["img-path"].ToString())); Rectangle rg = SetImgPosition(drConfing["position"].ToString(), imgStart.Width, imgStart.Height, imgWatermark.Width, imgWatermark.Height); gh.DrawImage(imgWatermark, rg, 0, 0, imgWatermark.Width, imgWatermark.Height, GraphicsUnit.Pixel); gh.Save(); gh.Dispose(); imgWatermark.Dispose(); } else if (drConfing["type"].Equals("font")) { //文字水印 string content = drConfing["font-content"].ToString(); float Size = (float)Convert.ToDouble(drConfing["font-size"].ToString()); FontStyle fontStyle = (FontStyle)int.Parse(drConfing["font-style"].ToString()); System.Drawing.Font f = new System.Drawing.Font("Arial", Size, fontStyle); Color G_Color = Color.FromName(drConfing["font-color"].ToString()); System.Drawing.Brush b = new System.Drawing.SolidBrush(G_Color); SizeF sizeF = gh.MeasureString(content, f); gh.DrawString(content, f, b, SetFontPosition(drConfing["position"].ToString(), imgStart.Width, imgStart.Height, (int)sizeF.Width, (int)sizeF.Height)); gh.Save(); gh.Dispose(); } //将请求文件写入到输出缓存中 imgStart.Save(context.Response.OutputStream, ImageFormat.Jpeg); imgStart.Dispose(); #endregion } else { #region 输出原图 //将请求文件写入到输出缓存中 context.Response.WriteFile(context.Request.Url.AbsolutePath); #endregion } } //如果不是本地引用,则是盗链本站图片 else { //将请求文件写入到输出缓存中 context.Response.WriteFile(context.Request.PhysicalApplicationPath + drConfing["errimgpath"].ToString()); } //将输出缓存中的信息传送到客户端 context.Response.End(); } /// <summary> /// 图片绘画水印的位置 /// </summary> /// <param name="positionConfig">位置类型</param> /// <param name="width">原图片宽</param> /// <param name="height"></param> /// <param name="watermarkWidth">水印图宽</param> /// <param name="watermarkHeight"></param> /// <returns></returns> private Rectangle SetImgPosition(string positionConfig,int width,int height,int watermarkWidth,int watermarkHeight) { int xpos = 0; int ypos = 0; int margin = 10; int width_margin = width - margin; int height_margin = height - margin; double proportion = 1d;//水印图片缩放比例 //int if ((width_margin > watermarkWidth * proportion) && (height_margin > watermarkHeight * proportion)) { } else if ((width_margin > watermarkWidth * proportion) && (height_margin < watermarkHeight * proportion)) { proportion = Convert.ToDouble( height_margin) / Convert.ToDouble( watermarkHeight); } else if ((width_margin < watermarkWidth * proportion) && (height_margin > watermarkHeight * proportion)) { proportion = Convert.ToDouble(width_margin) / Convert.ToDouble(watermarkWidth); } else { double proportionW = Convert.ToDouble(width_margin) / Convert.ToDouble(watermarkWidth); double proportionH = Convert.ToDouble(height_margin) / Convert.ToDouble(watermarkHeight); proportion = proportionW >= proportionH ? proportionH : proportionW; } watermarkWidth = Convert.ToInt32(watermarkWidth * proportion); watermarkHeight = Convert.ToInt32(watermarkHeight * proportion); switch (positionConfig) { case "top-left": xpos = margin; ypos = margin; break; case "top-right": xpos = width_margin - watermarkWidth; ypos = margin; break; case "bottom-left": xpos = margin; ypos = height_margin - watermarkHeight; break; case "bottom-right": xpos = width_margin - watermarkWidth ; ypos = height_margin - watermarkHeight ; break; default: xpos = width_margin - watermarkWidth ; ypos = height_margin - watermarkHeight; break; } return new Rectangle(xpos,ypos,watermarkWidth,watermarkHeight); } /// <summary> /// 图片绘画文字位置 /// </summary> /// <param name="positionConfig">位置类型</param> /// <param name="width">原图片宽</param> /// <param name="height"></param> /// <param name="fontWidth">文字长度</param> /// <param name="fontHeight"></param> /// <returns></returns> private Point SetFontPosition(string positionConfig, int width, int height, int fontWidth, int fontHeight) { int xpos = 0; int ypos = 0; int margin = 10; int width_margin = width - margin; int height_margin = height - margin; double proportion = 1d;//水印图片缩放比例 //int if ((width_margin > fontWidth * proportion) && (height_margin > fontHeight * proportion)) { } else if ((width_margin > fontWidth * proportion) && (height_margin < fontHeight * proportion)) { proportion = Convert.ToDouble(height_margin) / Convert.ToDouble(fontHeight); } else if ((width_margin < fontWidth * proportion) && (height_margin > fontHeight * proportion)) { proportion = Convert.ToDouble(width_margin) / Convert.ToDouble(fontWidth); } else { double proportionH = Convert.ToDouble(height_margin) / Convert.ToDouble(fontHeight); double proportionW = Convert.ToDouble(width_margin) / Convert.ToDouble(fontWidth); proportion = proportionW >= proportionH ? proportionH : proportionW; } fontWidth = Convert.ToInt32(fontWidth * proportion); fontHeight = Convert.ToInt32(fontHeight * proportion); switch (positionConfig) { case "top-left": xpos = margin; ypos = margin; break; case "top-right": xpos = width_margin - fontWidth; ypos = margin; break; case "bottom-left": xpos = margin; ypos = height_margin - fontHeight; break; case "bottom-right": xpos = width_margin - fontWidth; ypos = height_margin - fontHeight; break; default: xpos = width_margin - fontWidth; ypos = height_margin - fontHeight; break; } return new Point(xpos, ypos); } } } 。
3.配置文件的WaterMarkConfig.xml,内容如下: 。
复制代码代码如下
<?xml version="1.0" encoding="utf-8" ?> <watermark> <allowhost>localhost:6219</allowhost><!--允许访问的域名--> <isflag>true</isflag><!-- true、false--> <type>font</type><!-- img、font--> <files>/config|/upfiles/ab</files><!--需要加水印的文件夹--> <position>bottom-right</position><!-- top-left、top-right、bottom-left、bottom-right--> <img-path>~/UpFiles/Watermark.png</img-path><!-- 水印位置 --> <font-style>1</font-style><!--普通文本 0, 加粗文本 1, 倾斜文本 2, 带下划线的文本 4, 中间有直线通过的文本 8--> <font-size>60</font-size> <font-color>red</font-color> <font-content>¥:8000元</font-content> <errimgpath>images/error.jpg</errimgpath><!-- 盗图片的请求返回的跟目录下的某图片 --> </watermark> 。
最后此篇关于ASP.NET 图片加水印防盗链实现代码的文章就讲到这里了,如果你想了解更多关于ASP.NET 图片加水印防盗链实现代码的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
这是一个复杂的查询,我希望用一条语句实现它,而不是必须在 PHP 中处理数组值。 要达到预期的输出: User Jobs Total John D. 5 $1245.67 Ma
SELECT B. * , SC.cate_name, ( CASE WHEN special_offer_type = 'Fixed Value' THEN B.price - special_o
关于将 booksleeve 与 protobuf-net 结合使用,我有一些相当基本的问题。现在我已经实现了一个单例类来管理连接,所以我多次重复使用与 recommended 相同的连接。 .现在我
我想要一个客户端加/减系统,用户可以单击加号,值会增加 1,减号,值会减少 1,该值永远不应该低于零,并且应该从 0 开始.有没有办法在 jquery 中简单地做到这一点?所有 jquery 插件都会
我正在使用加号和减号按钮更新我的产品数量,这很有效,但我的问题是因为我在一个容器中有多个产品,它正在更新所有产品的数量。这是代码:
我需要在大小相等的小整数数组上做大量简单的代数运算。这些操作仅包括三种:(i) 添加数组和 (ii) 按元素减去数组,以及 (iii) 比较一个数组中的所有元素是否不小于/大于另一个数组中的对应元素。
我对 javascript 很陌生,但我需要一种 JS 方式来在单击按钮时增加/减少输入字段中的值。我已成功将值设置为显示 0,但当我单击“添加”按钮时,它不会增加。 以下是 html 和 JS 代码
我可以在输入字段中添加/减去一个数字。 但是,我希望结果显示在中而不是在input中字段。 我尝试使用innerHTML自己完成它但无法让它发挥作用。 $(function() { $('.min
我的页面上有一个加号/减号 jquery 选择器。当页面加载或数字达到 1 时,我希望减号按钮变灰以模拟非事件状态。这是我的代码和 fiddle https://jsfiddle.net/pgxvhs
我如何加/减用户输入的十六进制数? 喜欢: basehex = input() sechex = input() sum = hex(basehex - sechex) print(sum) 我得到:
本文实例讲述了python简单实现矩阵的乘,加,转置和逆运算。分享给大家供大家参考,具体如下: 使用python完成矩阵的乘,加,转置和逆: ?
我输入的一些文本包括几个上下箭头(↑ 和 ↓),以及一个加号/减号 (±)。 这些特殊字符以 HTML ASCII 输入:↑ ↓ ±。在 POST 上,HTML 在保存到 MySQL 表之前使用 ht
我正在尝试配置 Live Gamer Portable 2 Plus 的输出引脚以降低帧速率。通过 GraphStudioNext,我可以通过捕获引脚访问配置并更改帧速率。 但是,当我通过 API 在
我正在尝试使用批处理文件创建任意时间。我试图从我的代码中减去设置值(例如1天,1个月和2000年),以显示系统时间减去前面所述的设置值。对于小时和分钟,我要减去10小时和10分钟(在代码中显示为不同的
我想建立一个 5 位向上/向下计数器。当我能让模拟工作时,我会更乐意购买零碎的东西来构建它。到目前为止,我使用的是 ATmega8,但坦率地说,只要组件相当便宜,任何解决方案都适合我。 我在网上找到了
使用 ng-repeat 时在数字输入字段上添加加/减切换的最佳方法是什么 我这样试过,但没用: - + vm.plus = f
我正在尝试弄清楚如何将 UNION 与相同的 JOIN 一起使用,而不是陷入 #2014 - 命令不同步。 我创建了四个简单的表格并为它们编写了简化的代码。主要想法是获得名字中带有“最佳”字样的每把剑
这个问题已经有答案了: Is floating point math broken? (33 个回答) 已关闭 9 年前。 我有一个简单的函数,应该生成 1000 个不同的元素: var start
我目前正在编写一个响应式设计,我正处于移动导航折叠的地步。 为此,我创建了两个 div 和一个 ul。 ul 包含我的 nav 元素,而 div 将显示移动设备和平板电脑下拉菜单的导航图像。 HTML
我为 woocommerce 单个产品页面创建了一个加/减数量按钮。创建了一个新的数量-input.php " min="" max="" name="" value="" ti
我是一名优秀的程序员,十分优秀!