C#使用iTextSharp给PDF添加水印

合集下载
  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

C#使⽤iTextSharp给PDF添加⽔印
昨天发现公司的框架⽤的.netframework3.5。

⽤上⾯那个⽅法,.netframework最低4.0,升级公司框架的版本,导致之前写过的代码报错地⽅⽐较多,所以⽹上找到了该⽅法,记录下来,⽀持.netframework3.5
类库下载:
引⼊类库
引⼊命名空间
using iTextSharp.text;
using iTextSharp.text.pdf;
using System.IO;
实现:
///<summary>
/// 添加普通偏转⾓度⽂字⽔印
///</summary>
public static void SetWatermark(string filePath, string text)
{
PdfReader pdfReader = null;
PdfStamper pdfStamper = null;
string tempPath = Path.GetDirectoryName(filePath) + Path.GetFileNameWithoutExtension(filePath) + "_temp.pdf";
try
{
pdfReader = new PdfReader(filePath);
pdfStamper = new PdfStamper(pdfReader, new FileStream(tempPath, FileMode.Create));
int total = pdfReader.NumberOfPages + 1;
iTextSharp.text.Rectangle psize = pdfReader.GetPageSize(1);
float width = psize.Width;
float height = psize.Height;
PdfContentByte content;
BaseFont font = BaseFont.CreateFont(@"C:\WINDOWS\Fonts\SIMFANG.TTF", BaseFont.IDENTITY_H, BaseFont.EMBEDDED); PdfGState gs = new PdfGState();
for (int i = 1; i < total; i++)
{
content = pdfStamper.GetOverContent(i);//在内容上⽅加⽔印
//content = pdfStamper.GetUnderContent(i);//在内容下⽅加⽔印
//透明度
gs.FillOpacity = 0.3f;
content.SetGState(gs);
//content.SetGrayFill(0.3f);
//开始写⼊⽂本
content.BeginText();
content.SetColorFill(BaseColor.GRAY);
content.SetFontAndSize(font, 30);
content.SetTextMatrix(0, 0);
content.ShowTextAligned(Element.ALIGN_CENTER, text, width - 120, height - 120, -45);
//content.SetColorFill(BaseColor.BLACK);
//content.SetFontAndSize(font, 8);
//content.ShowTextAligned(Element.ALIGN_CENTER, waterMarkName, 0, 0, 0);
content.EndText();
}
}
catch (Exception ex)
{
throw ex;
}
finally
{
if (pdfStamper != null)
pdfStamper.Close();
if (pdfReader != null)
pdfReader.Close();
System.IO.File.Copy(tempPath, filePath, true); System.IO.File.Delete(tempPath);
}
}。

相关文档
最新文档