概述
一般我们在向文档添加水印时,会分为直接添加文字水印和加载图片添加图片水印两种情况。常见的,在添加文字水印时会多以声明文档版权、权威性的文字、标语或者名称等;同样的,图片水印也通常可以是某组织的LOGO、印章、或者其他能够指示性的图片等。在下面的文档中,将介绍通过C#编程来添加PDF水印的方法,包括:
- 添加文本水印
- 添加图片水印
使用工具
- Spire.PDF for .NET
C#代码示例(供参考)
【示例1】添加PDF文本水印
using Spire.Pdf;
using Spire.Pdf.Annotations;
using Spire.Pdf.Annotations.Appearance;
using Spire.Pdf.Graphics;
using System;
using System.Drawing;namespace TextWatermark
{class Program{static void Main(string[] args){//创建PdfDocument对象PdfDocument pdf = new PdfDocument();//加载现有PDF文档pdf.LoadFromFile("sample.pdf");//创建True Type字体PdfTrueTypeFont font = new PdfTrueTypeFont(new Font("宋体", 20f), true);//水印文字string text = "版权所有n侵权必究";//测量文字所占的位置大小,即高宽SizeF fontSize = font.MeasureString(text);//计算两个偏移量float offset1 = (float)(fontSize.Width * System.Math.Sqrt(2) / 4);float offset2 = (float)(fontSize.Height * System.Math.Sqrt(2) / 4);//遍历文档每一页foreach (PdfPageBase page in pdf.Pages){//创建PdfTilingBrush对象PdfTilingBrush brush = new PdfTilingBrush(new SizeF(page.Canvas.Size.Width / 2, page.Canvas.Size.Height / 2));//设置画刷透明度brush.Graphics.SetTransparency(0.8f);//将画刷中坐标系向右下平移brush.Graphics.TranslateTransform(brush.Size.Width / 2 - offset1 - offset2, brush.Size.Height / 2 + offset1 - offset2);//将坐标系逆时针旋转45度brush.Graphics.RotateTransform(-45);//在画刷上绘制文本brush.Graphics.DrawString(text, font, PdfBrushes.DarkGray, 0, 0);//在PDF页面绘制跟页面一样大小的矩形,并使用定义的画刷填充page.Canvas.DrawRectangle(brush, new RectangleF(new PointF(0, 0), page.Canvas.Size));}//保存文档pdf.SaveToFile("output.pdf");System.Diagnostics.Process.Start("output.pdf"); }}
}
完成代码后,调试运行程序,生成文档,如下:
注:如果只想设置单页的水印效果,只需获取指定页,并添加水印效果即可。
【示例2】添加PDF图片水印
using Spire.Pdf;
using System.Drawing;namespace ImageWaterMark
{class Program{static void Main(string[] args){//创建PdfDocument对象PdfDocument pdf = new PdfDocument();//加载现有PDF文档pdf.LoadFromFile("sample.pdf");//加载图片到System.Drawing.Image对象Image image = Image.FromFile("logo.png");//遍历文档每一页foreach (PdfPageBase page in pdf.Pages){//设置背景图的位置及大小page.BackgroundRegion = new RectangleF((page.ActualSize.Width - 250) / 2, (page.ActualSize.Height - 250) / 2, 250, 250);//设置背景图page.BackgroundImage = image;}//保存并打开文档pdf.SaveToFile("output.pdf");System.Diagnostics.Process.Start("output.pdf");}}
}
测试结果:
相关资料:C# 添加水印到PDF文档(视频教程)
(本文完)