码迷,mamicode.com
首页 > 其他好文 > 详细

pdf通过itext包增加水印

时间:2018-03-01 13:17:27      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:show   over   throws   5.4   end   fill   byte   fread   close   

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包增加水印

标签:show   over   throws   5.4   end   fill   byte   fread   close   

原文地址:https://www.cnblogs.com/zcy1996/p/8487782.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!