• pdf添加水印


    给pdf文件添加水印

    1. 引入依赖
      <dependency>
                <groupId>com.itextpdfgroupId>
                <artifactId>itextpdfartifactId>
                <version>5.5.13.3version>
            dependency>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    1. 添加水印
    package com.it2.pdfdemo02.util;
    
    import com.itextpdf.text.Element;
    import com.itextpdf.text.Rectangle;
    import com.itextpdf.text.pdf.*;
    
    import java.io.FileOutputStream;
    
    /**
     * @Description: PDF增加水印工具类
     */
    public class PDFUtil {
    
        /**
         * 给PDF添加水印
         * @param inputFilePath 源文件
         * @param outputFilePath 生成的文件
         * @param waterMarkContent 添加水印的内容
         */
        public static void pdfAddWaterMark(String inputFilePath, String outputFilePath, String waterMarkContent) {
            try {
                // 水印的高和宽
                int waterMarkHeight = 30;
                int watermarkWeight = 60;
                // 水印间隔距离
                int waterMarkInterval = 200;
                // 读取PDF文件流
                PdfReader pdfReader = new PdfReader(inputFilePath);
                // 创建PDF文件的模板,可以对模板的内容修改,重新生成新PDF文件
                PdfStamper pdfStamper = new PdfStamper(pdfReader, new FileOutputStream(outputFilePath));
                // 设置水印字体
                BaseFont baseFont = BaseFont.createFont("Font/SIMYOU.TTF", BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED); //幼圆常规
                // 设置PDF内容的Graphic State 图形状态
                PdfGState pdfGraPhicState = new PdfGState();
                // 填充透明度
                pdfGraPhicState.setFillOpacity(0.2f);
                // 轮廓不透明度
                pdfGraPhicState.setStrokeOpacity(0.4f);
                // PDF页数
                int pdfPageNum = pdfReader.getNumberOfPages() + 1;
                // PDF文件内容字节
                PdfContentByte pdfContent;
                // PDF页面矩形区域
                Rectangle pageRectangle;
                for (int i = 1; i < pdfPageNum; i++) {
                    // 获取当前页面矩形区域
                    pageRectangle = pdfReader.getPageSizeWithRotation(i);
                    // 获取当前页内容,getOverContent表示之后会在页面内容的上方加水印
                    pdfContent = pdfStamper.getOverContent(i);
                    // 获取当前页内容,getOverContent表示之后会在页面内容的下方加水印
    //                 pdfContent = pdfStamper.getUnderContent(i);
                    pdfContent.saveState();
                    // 设置水印透明度
                    pdfContent.setGState(pdfGraPhicState);
                    // 开启写入文本
                    pdfContent.beginText();
                    // 设置字体
                    pdfContent.setFontAndSize(baseFont, 20);
                    // 在高度和宽度维度每隔waterMarkInterval距离添加一个水印
                    for (int height = waterMarkHeight; height < pageRectangle.getHeight(); height = height + waterMarkInterval) {
                        for (int width = watermarkWeight; width < pageRectangle.getWidth() + watermarkWeight;
                             width = width + waterMarkInterval) {
                            // 添加水印文字并旋转30度角
                            pdfContent.showTextAligned(Element.ALIGN_LEFT, waterMarkContent, width - watermarkWeight,
                                    height - waterMarkHeight, 30);
                        }
                    }
                    // 停止写入文本
                    pdfContent.endText();
                }
                pdfStamper.close();
                pdfReader.close();
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    1. 添加字体文件到resoures\Font\simsun.ttc

    用到的字体文件(幼圆常规,C盘Windows/Fonts目录下
    在这里插入图片描述

    在这里插入图片描述

    1. 测试用例
        @Test
        void addWater() {
            PDFUtil.pdfAddWaterMark("D:\\test3\\test1.pdf", "D:\\test3\\test1_watermark.pdf", "内部资料,禁止外传");
        }
    
    • 1
    • 2
    • 3
    • 4

    在这里插入图片描述

  • 相关阅读:
    mysql 主从复制与读写分离
    java实现http/https请求
    flex布局
    VScode默认输出到调试控制台如何调整到终端以及两者中的乱码问题
    Kafka 单机和集群环境部署教程
    性能测试VS负载测试VS压力测试
    MySQL-基本概念与Select操作
    父子组件间的通信,插槽(slot)
    GEO生信数据挖掘(九)WGCNA分析
    猿创征文|【Maven】分模块开发、依赖管理、聚合、继承、属性
  • 原文地址:https://blog.csdn.net/u011628753/article/details/132898690