ASP.NET:动态地为图像添加“水印”

时间:2011-03-28 10:31:58

标签: asp.net image image-processing watermark

我见过关于adding watermark on images with php

的很多问题和答案

我想这样做,这次使用ASP.NET

所以这里有几个问题。

  1. 我怎么能用ASP做到这一点?
  2. 这个过程是否会成为服务器的重载?
  3. 我可以使用图像作为水印而不是简单的文字吗?

6 个答案:

答案 0 :(得分:3)

以下是codeproject中的另一个示例http://www.codeproject.com/KB/web-image/ASPImaging1.aspx,您可以对图像进行多次思考,包括从图像中添加水印。

我认为这个过程是采取cpu power ether在php,ether.net上的asp.net。因此,图像缓存模式是此类工作的必需品。

这是一些基本代码。在此代码中,您必须更改水印的位置和图像的大小。水印可以是带透明的png图像。

    public void MakePhoto(...parametres...)
    {
        Bitmap outputImage = null;
        Graphics g = null;

        try
        {                
            // the final image
            outputImage = new Bitmap(OutWidth, OutHeight, PixelFormat.Format24bppRgb);

            g = Graphics.FromImage(outputImage);
            g.CompositingMode = CompositingMode.SourceCopy;
            Rectangle destRect = new Rectangle(0, 0, OutWidth, OutHeight);

            // the photo
            using (var BasicPhoto = new Bitmap(cBasicPhotoFileOnDisk))
            {
                g.DrawImage(BasicPhoto, destRect, 0, 0, BasicPhoto.Width, BasicPhoto.Height, GraphicsUnit.Pixel);
            }

            g.CompositingMode = CompositingMode.SourceOver;
            // the watermark
            using (var WaterMark = new Bitmap(cWaterMarkPhotoOnDisk))
            {
                Rectangle destWaterRect = new Rectangle(0, 0, OutWidth, OutHeight);

                g.DrawImage(WaterMark, destWaterRect, 0, 0, OutWidth, OutHeight, GraphicsUnit.Pixel);
            }

            outputImage.Save(TheFileNameTosaveIt, ImageFormat.Jpeg);

        }
        catch (Exception x)
        {
            Debug.Assert(false);
            ... log your error, and send an error image....                
        }
        finally
        {
            if (outputImage != null)
                outputImage.Dispose();

            if (g != null)
                g.Dispose();
        }
    }

如果您希望制作自定义句柄,则上述代码为stand,但您只更改了保存行。像。的东西。

public void ProcessRequest (HttpContext context)    
{
    context.Response.ContentType = "image/jpeg";

    // add you cache here
    context.Response.Cache.SetExpires(DateTime.Now.AddMinutes(200));
    context.Response.Cache.SetMaxAge(new TimeSpan(0, 200, 0));
    context.Response.BufferOutput = false;


    ..... the above code....
    outputImage.Save(context.Response.OutputStream, ImageFormat.Jpeg);
    ..... the above code....


    context.Response.End();
}

答案 1 :(得分:2)

您需要使用ASP.NET Watermarker Module文章中描述的HTTPModule

答案 2 :(得分:1)

是的,您可以使用GDI+,在图片上使用DrawString(),然后保存或将其作为回复返回来执行此操作。

答案 3 :(得分:1)

post I made中,有一个使用WPF而不是旧的,弃用的GDI +对图像上的文本加水印的示例。

正如您在文章中看到的那样,使用DrawingContext的DrawText方法添加文本,实际上很容易使用DrawImage,而是接受BitmapImage。

有类似的东西:

BitmapImage logo = new BitmapImage();
logo.BeginInit();
logo.CacheOption = BitmapCacheOption.OnLoad;
logo.UriSource = new Uri(your_physical_logopath);
logo.EndInit();

Rect rect = new Rect(0, 0, (double)logo.PixelWidth, (double)logo.PixelHeight);

dc.DrawImage(logo, rect);

使用rect.X和rect.Y,在执行DrawImage()之前,您可以修改DrawingContext中徽标图像的相对位置。

答案 4 :(得分:0)

旧文章,但可能会有一些人会寻找用于文本/图像水印的ASP.Net Core版本。

我刚刚为此创建了一个工具,可以从nuget下载:

PM> Install-Package LazZiya.ImageResize -Version 2.0.0

添加如下水印图像:

var img = Image.FromFile("wwwroot\\imags\\my-image.jpg");
var watermark = Image.FromFile("wwwroot\\images\\watermark.png");

img.ImageWatermark(watermark, 
    TargetSpot.TopRight, //spot to place the watermark
    10,                  //margin from border
    40);                 //opacity of image watermark

img.SaveAs("wwwroot\\images\\new-image.jpg");

该工具还具有调整大小,裁剪和添加文本水印的更多功能。

查看更多示例here

答案 5 :(得分:0)

GroupDocs.Watermark for .NET是一个功能强大且易于使用的API,用于向图像文件添加文本和图像水印。您可以通过以下几行代码添加水印:

using (ImageDocument doc = Document.Load<ImageDocument>("D:\\image.jpeg"))
{
    // Add text watermark
    TextWatermark watermark = new TextWatermark("Protected Document", new Font("Arial", 8));
    watermark.HorizontalAlignment = HorizontalAlignment.Center;
    watermark.VerticalAlignment = VerticalAlignment.Center;
    doc.AddWatermark(watermark);

    // Add image watermark
    ImageWatermark imageWatermark = new ImageWatermark("D:\\watermark.png");
    doc.AddWatermark(imageWatermark);

    // Save document
    doc.Save("D:\\output.jpeg");
}

披露:我是GroupDocs的一名开发人员。