pdf通过itext包增加水印

Posted zcy1996

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pdf通过itext包增加水印相关的知识,希望对你有一定的参考价值。

public static void main(String[] args) throws Exception { 
        PdfReader reader = new PdfReader(new FileInputStream(new File("E:/e1c84094314443dbba6c3f77ea907030.pdf")));//存在的文件
        PdfStamper stamper = new PdfStamper(reader, new FileOutputStream(new File("E:/pdfWithWaterMark.pdf")));//输出文件
        int total = reader.getNumberOfPages() + 1;//pdf总页数
        PdfContentByte content;
        BaseFont base = BaseFont.createFont("C:/WINDOWS/Fonts/SIMSUN.TTC,1",BaseFont.IDENTITY_H, BaseFont.EMBEDDED);
        PdfGState gs = new PdfGState();
     int a=0,b=0,c=35; //a距左,b距下,c倾斜度
for (int i = 1; i < total; i++) { content = stamper.getOverContent(i);// 在内容上方加水印 // content = stamper.getUnderContent(i);//在内容下方加水印 gs.setFillOpacity(0.4f); content.setGState(gs);// 透明度 content.beginText(); content.setColorFill(Color.LIGHT_GRAY); content.setFontAndSize(base, 30); content.setTextMatrix(70, 200); content.showTextAligned(Element.ALIGN_CENTER, "测试水印", a, b, c); content.setColorFill(Color.BLACK); content.setFontAndSize(base, 8); content.endText(); } stamper.close(); }

不过这个方法一页只能放一个水印  不过可以通过循环

content.showTextAligned(Element.ALIGN_CENTER, "测试水印", a, b, c);

该行一页添加多个水印     还在寻找其他更好的方法

itext包:

<dependency>
    <groupId>com.itextpdf</groupId>
    <artifactId>itextpdf</artifactId>
    <version>5.4.5</version>
</dependency>

 

以上是关于pdf通过itext包增加水印的主要内容,如果未能解决你的问题,请参考以下文章

java pdf itext 水印 怎么做到 汉字水印 平铺或者换行 不想每页只插入一行水印

使用iText对pdf做权限的操作(不允许修改,不允许复制,不允许另存为),并且加水印等

使用iText给pdf文件添加水印不能正常显示

使用 iTextSharp 添加水印文本时,PAC 工具中出现 iText 7 警告

用iText生成word文档, 怎么给 word 添加水印,不是生成pdf哦,是word,哪位大神help~~

PDF文件添加二维码水印