asp.net如何在图片上加水印文字具体实现

 这篇文章主要介绍了asp.net如何在图片上加水印文字具体实现,有需要的朋友可以参考一下

第一步,添加一个一般处理程序(Handler),本例是ImageHandler
 
代码如下:
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Net.Mime;
using System.IO;
using System.Drawing;
using System.Drawing.Imaging;
using System.Drawing.Drawing2D;
 
/// <summary>
/// Summary description for ImageHandler
/// </summary>
public class ImageHandler : IHttpHandler
{
    public ImageHandler()
    {
    }
 
    public string GetContentType(String path)
    {
        switch (Path.GetExtension(path))
        {
            case ".bmp": return "Image/bmp";
            case ".gif": return "Image/gif";
            case ".jpg": return "Image/jpeg";
            case ".png": return "Image/png";
            default: break;
        }
        return String.Empty;
    }
 
    public ImageFormat GetImageFormat(String path)
    {
        switch (Path.GetExtension(path).ToLower())
        {
            case ".bmp": return ImageFormat.Bmp;
            case ".gif": return ImageFormat.Gif;
            case ".jpg": return ImageFormat.Jpeg;
            case ".png": return ImageFormat.Png;
            default: return null;
        }
    }
 
    protected byte[] WatermarkImage(HttpContext context)
    {
 
        byte[] imageBytes = null;
        if (File.Exists(context.Request.PhysicalPath))
        {
            // Normally you'd put this in a config file somewhere.
            string watermark = "世复检测";
 
            Image image = Image.FromFile(context.Request.PhysicalPath);
 
            Graphics graphic;
            if (image.PixelFormat != PixelFormat.Indexed && image.PixelFormat != PixelFormat.Format8bppIndexed && image.PixelFormat != PixelFormat.Format4bppIndexed && image.PixelFormat != PixelFormat.Format1bppIndexed)
            {
                // Graphic is not a Indexed (GIF) image
                graphic = Graphics.FromImage(image);
            }
            else
            {
                /* Cannot create a graphics object from an indexed (GIF) image. 
                 * So we're going to copy the image into a new bitmap so 
                 * we can work with it. */
                Bitmap indexedImage = new Bitmap(image);
                graphic = Graphics.FromImage(indexedImage);
 
                // Draw the contents of the original bitmap onto the new bitmap. 
                graphic.DrawImage(image, 0, 0, image.Width, image.Height);
                image = indexedImage;
            }
            graphic.SmoothingMode = SmoothingMode.AntiAlias & SmoothingMode.HighQuality;
 
            Font myFont = new Font("Arial", 15);
            SolidBrush brush = new SolidBrush(Color.FromArgb(255, Color.Red));
 
            /* This gets the size of the graphic so we can determine 
             * the loop counts and placement of the watermarked text. */
            SizeF textSize = graphic.MeasureString(watermark, myFont);
 
            //// Write the text across the image. 
            //for (int y = 0; y < image.Height; y++)
            //{
            //    for (int x = 0; x < image.Width; x++)
            //    {
            //        PointF pointF = new PointF(x, y);
            //        graphic.DrawString(watermark, myFont, brush, pointF);
            //        x += Convert.ToInt32(textSize.Width);
            //    }
            //    y += Convert.ToInt32(textSize.Height);
            //}
 
 
            // Write the text at the right bottom of the image. 
            for (int y = image.Height-25; y < image.Height; y++)
            {
                for (int x = image.Width-100; x < image.Width; x++)
                {
                    PointF pointF = new PointF(x, y);
                    graphic.DrawString(watermark, myFont, brush, pointF);
                    x += Convert.ToInt32(textSize.Width);
                }
                y += Convert.ToInt32(textSize.Height);
            }
 
            using (MemoryStream memoryStream = new MemoryStream())
            {
                image.Save(memoryStream, GetImageFormat(context.Request.PhysicalPath));
                imageBytes = memoryStream.ToArray();
            }
 
        }
        return imageBytes;
    }
 
    #region IHttpHandler Members
 
    public bool IsReusable
    {
        get { return false; }
    }
 
    public void ProcessRequest(HttpContext context)
    {
        context.Response.Clear();
        context.Response.ContentType = GetContentType(context.Request.PhysicalPath);
        byte[] imageBytes = WatermarkImage(context);
        if (imageBytes != null)
        {
            context.Response.OutputStream.Write(imageBytes, 0, imageBytes.Length);
        }
        else
        {
            // No bytes = no image which equals NO FILE.    
            // Therefore send a 404 - not found response. 
            context.Response.StatusCode = 404;
        }
        context.Response.End();
    }
 
    #endregion
}
 
 
 
第二步,在web.config里添加如下代码:
 
代码如下:
    <httpHandlers>
      <!--<add verb="GET" type="ImageHandler" path="*.jpg,*.png,*.gif,*.bmp"/>-->
      <add verb="GET" type="ImageHandler" path="Uploads/*/*.jpg"/>      
    </httpHandlers>
 
 

时间: 2024-12-28 04:43:43

asp.net如何在图片上加水印文字具体实现的相关文章

Excel打印图片时图片上加的文字无法显示

症状:用户的Excel文档插入有图片,然后在图片上添加有文字,但是文字添加好后,在编辑状态下能看到,但是预览时却发现文字不见了. 如图: 原因:图片图层设置问题 解决方法:按Shift--点选矩形框和图片--右键--组合--组合 查看本栏目更多精彩内容:http://www.bianceng.cnhttp://www.bianceng.cn/Office/excel/

java实现图片上加文字水印(SpringMVC + Jsp)_java

看之前要先对SpringMVC进行了解打好基础,下面直接先看效果图 代码编写 1.导入相关架包 2.配置文件 web.xml <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee"

asp.net生成静态页面怎么给静态页面的图片动态加水印

问题描述 asp.net生成静态页面怎么给静态页面的图片动态加水印 解决方案 解决方案二:通常你会有几个地方可以控制图片的加入动作比如上传图片那么加水印可以在这个时候进行对已有的图片可以进行批量处理加水印的方法ImagewaterMask=Image.FromFile("水印图片地址");Imageimg=Image.FromFile("需要加水印的图片地址");Graphicsg=Graphics.FromImage(img);g.DrawImage(waterM

Photoshop轻松去除图片上的水印教程

  很多人从网上下载或者另存为的图片上带有水印,是不是看起来很讨厌?我教你用Photoshop两步对水印SAI NO! 轻松去掉这些水印.具体的就讲两种方法吧. 工具/原料 电脑 安装有photoshop各个版本应该都可以 去水印方法一(推荐) 当然是先打开Photoshop啦,虽然是废话,还是说一下:我的photoshop 的版本是CS6中文版~ 第二步,打开你要去除水印的图片~如图,看到白色圈圈里的水印没?接下来我们把它去掉! 第三步,双击图层窗口的背景图层(现在还不是图层,我们不能对它进行

js实现鼠标悬停图片上时滚动文字说明的方法

 这篇文章主要介绍了js实现鼠标悬停图片上时滚动文字说明的方法,涉及js操作鼠标事件的使用技巧,需要的朋友可以参考下     本文实例讲述了js实现鼠标悬停图片上时滚动文字说明的方法.分享给大家供大家参考.具体实现方法如下:   代码如下: <html> <title>js实现鼠标悬停图片上时的滚动文字说明</title> <body> <SCRIPT LANGUAGE="JavaScript"> <!-- Begin

js实现鼠标悬停图片上时滚动文字说明的方法_javascript技巧

本文实例讲述了js实现鼠标悬停图片上时滚动文字说明的方法.分享给大家供大家参考.具体实现方法如下: 复制代码 代码如下: <html> <title>js实现鼠标悬停图片上时的滚动文字说明</title> <body> <SCRIPT LANGUAGE="JavaScript"> <!-- Begin function showtip2(current,e,text){   if (document.all&&a

ndroid图片-Android在图片上动态输入文字,并可以改变文字大小,颜色和显示框!

问题描述 Android在图片上动态输入文字,并可以改变文字大小,颜色和显示框! 大神求赐教,现在我要做一个图片上动态输入文字的效果,就是点击图片的某一个位置显示一个文本输入框editText,然后在文本输入框里面输入文字,而且输入的文字可以改变字体的大小和颜色,点击确定将文字显示在图片上!求大神!

photoshop给图片批量加水印

许多朋友准备了很多精美的图片,发布到网上,眼睁睁看着自己的作品被别人盗用,如何做可以使你的图片被很好的利用呢,看看下面的教材 1:打开你的水印文件,如下图 2:复制水印(怎么复制,看下图,Ctrl+C(快捷键)复制) 注意:1:看清楚图层面板,自己是不是选到水印所在的层 复制好了后,关掉水印文件,我们开始做下一步骤 (在这也可以不复制水印,而是直接把水印拖到想要加水印的图片上) 3:录制动作! 在做这一步以前,我们先打开一张图片,也就是你要添加水印的照片, 随便打开一张,然后我们开始录制动作.

用Fireworks为gif图片批量加水印教程

gif动画图片批量增加水印效果.这个功能对于个人站长是非常实用的. 原图: 处理后: 1.用firework打开gif文件. 2.在gif上面加上水印效果(打上文字,设置透明度) 3.在历史面板上保存动作.(保存为33) 4.打开firework的文件菜单 选择-批处理 5.选择你要批处理的文件(增加进来) 6.选择你刚刚保存的动作,和选择你处理完图片保存的目录. 7.批处理,完成.