中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

asp.net在圖片上加水印文字的實現方法

發布時間:2021-02-04 11:05:28 來源:億速云 閱讀:194 作者:小新 欄目:開發技術

這篇文章給大家分享的是有關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>

感謝各位的閱讀!關于“asp.net在圖片上加水印文字的實現方法”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

开鲁县| 化德县| 定南县| 阿合奇县| 开平市| 新郑市| 广平县| 察隅县| 偃师市| 湘潭市| 山丹县| 开原市| 修武县| 武隆县| 福泉市| 葵青区| 邮箱| 丹阳市| 海伦市| 阜阳市| 钟祥市| 保康县| 绩溪县| 松原市| 新干县| 霸州市| 亚东县| 边坝县| 咸丰县| 科技| 兰州市| 乌鲁木齐县| 浏阳市| 罗城| 固镇县| 宣武区| 旌德县| 甘肃省| 公主岭市| 若尔盖县| 东阳市|