Java 实现PDF添加水印

maven依赖:

xml 复制代码
   <dependency>
     <groupId>com.itextpdf</groupId>
       <artifactId>itextpdf</artifactId>
       <version>5.4.3</version> 
   </dependency>

网络地址添加水印代码:

java 复制代码
    public static boolean waterMarkNet(String inputFile, String outputFile, String waterMarkName) {
        try
        {
            URL url = new URL(inputFile);
            PdfReader reader = new PdfReader(url);
            PdfStamper stamper = new PdfStamper(reader, new FileOutputStream(outputFile));
            //这里的字体设置比较关键,这个设置是支持中文的写法
            BaseFont base = BaseFont.createFont();
            //BaseFont base = BaseFont.createFont("STSong-Light", "UniGB-UCS2-H",   BaseFont.EMBEDDED);// 使用系统字体

            int total = reader.getNumberOfPages() + 1;
            PdfContentByte under;
            Rectangle pageRect = null;
            PdfGState gs = new PdfGState();
            //透明度
            gs.setFillOpacity(0.2f);
            gs.setStrokeOpacity(0.1f);
            for (int i = 1; i < total; i++)
            {
                pageRect = stamper.getReader().
                        getPageSizeWithRotation(i);
                under = stamper.getOverContent(i);
                under.saveState();
                under.setGState(gs);
                under.beginText();
                under.setFontAndSize(base, 50);
                under.setTextMatrix(30, 30);
                under.showTextAligned(Element.ALIGN_CENTER, waterMarkName, 300, 100, 20);
                under.showTextAligned(Element.ALIGN_CENTER, waterMarkName, 300, 300, 20);
                under.showTextAligned(Element.ALIGN_CENTER, waterMarkName, 300, 500, 20);
                under.showTextAligned(Element.ALIGN_CENTER, waterMarkName, 300, 700, 20);
                // 添加水印文字
                under.endText();
                under.setLineWidth(10f);
                under.stroke();
            }
            stamper.close();
            return true;
        } catch (Exception e)
        {
            e.printStackTrace();
            return false;
       

本地地址添加水印代码

java 复制代码
/**
     * 功能描述: 本地文件添加水印
     *
     * @param inputFile
     * @param outputFile
     * @param waterMarkName
     * @date 10:52 2024/11/20
     */
    public static boolean waterMark(String inputFile, String outputFile, String waterMarkName) {
        try
        {
            PdfReader reader = new PdfReader(inputFile);
            PdfStamper stamper = new PdfStamper(reader, new FileOutputStream(outputFile));
            //这里的字体设置比较关键,这个设置是支持中文的写法
            BaseFont base = BaseFont.createFont();
            //BaseFont base = BaseFont.createFont("STSong-Light", "UniGB-UCS2-H",   BaseFont.EMBEDDED);// 使用系统字体
            int total = reader.getNumberOfPages() + 1;
            PdfContentByte under;
            Rectangle pageRect = null;
            PdfGState gs = new PdfGState();
            //透明度
            gs.setFillOpacity(0.2f);
            gs.setStrokeOpacity(0.1f);
            for (int i = 1; i < total; i++)
            {
                pageRect = stamper.getReader().
                        getPageSizeWithRotation(i);
                under = stamper.getOverContent(i);
                under.saveState();
                under.setGState(gs);
                under.beginText();
                under.setFontAndSize(base, 50);
                under.setTextMatrix(30, 30);
                under.showTextAligned(Element.ALIGN_CENTER, waterMarkName, 300, 100, 20);
                under.showTextAligned(Element.ALIGN_CENTER, waterMarkName, 300, 300, 20);
                under.showTextAligned(Element.ALIGN_CENTER, waterMarkName, 300, 500, 20);
                under.showTextAligned(Element.ALIGN_CENTER, waterMarkName, 300, 700, 20);
                // 添加水印文字
                under.endText();
                under.setLineWidth(10f);
                under.stroke();
            }
            stamper.close();
            return true;
        } catch (Exception e)
        {
            e.printStackTrace();
            return false;
        }
    }

测试代码

java 复制代码
  public static void main(String[] args) {
       System.out.println(TestwaterMark.waterMark("https://XXXXXX/%E6%AD%A3%E6%96%87.pdf", "D:\\XXX\\XXX.pdf", "zymz"+DateUtils.dateTimeNow()));
    }
相关推荐
·云扬·1 小时前
Java IO 与 BIO、NIO、AIO 详解
java·开发语言·笔记·学习·nio·1024程序员节
求积分不加C1 小时前
Spring Boot中使用AOP和反射机制设计一个的幂等注解(两种持久化模式),简单易懂教程
java·spring boot·后端
枫叶_v1 小时前
【SpringBoot】26 实体映射工具(MapStruct)
java·spring boot·后端
东方巴黎~Sunsiny1 小时前
java-图算法
java·开发语言·算法
2401_857617622 小时前
汽车资讯新趋势:Spring Boot技术解读
java·spring boot·后端
小林学习编程3 小时前
从零开始理解Spring Security的认证与授权
java·后端·spring
写bug的羊羊3 小时前
Spring Boot整合Nacos启动时 Failed to rename context [nacos] as [xxx]
java·spring boot·后端
ad禥思妙想3 小时前
如何运行python脚本
开发语言·python
Matlab程序猿小助手3 小时前
【MATLAB源码-第218期】基于matlab的北方苍鹰优化算法(NGO)无人机三维路径规划,输出做短路径图和适应度曲线.
开发语言·嵌入式硬件·算法·matlab·机器人·无人机
威威猫的栗子3 小时前
用 Python 与 Turtle 创作属于你的“冰墩墩”!
开发语言·python·turtle