java对pdf文件添加水印

java对pdf文件添加水印

添加依赖

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

        <dependency>
            <groupId>com.itextpdf</groupId>
            <artifactId>itext-asian</artifactId>
            <version>5.2.0</version>
        </dependency>

参考代码

java 复制代码
private final static Map<String,Object> pdfConfig = getPdfDefaultConfig();



    public static Map<String,Object> getPdfDefaultConfig(){
        Map<String, Object> config = new HashMap<>();
        try {
            config.put("baseFont", BaseFont.createFont("STSong-Light", "UniGB-UCS2-H",   BaseFont.EMBEDDED));
        } catch (IOException | DocumentException e) {
            throw new RuntimeException(e);
        }
        config.put("fillOpacity",0.3f);// 填充透明度
        config.put("strokeOpacity",0.4f);// 笔划不透明度
        config.put("fontSize",16);//字体大小
        config.put("interval",-15);// 水印间隔
        config.put("rotation",30);// 旋转角度
        return config;
    }

    public static void pdfByText(InputStream inputStream, OutputStream outputStream, String waterMarkName, Map<String,Object> config) throws DocumentException, IOException {
        PdfReader reader = new PdfReader(inputStream);
        PdfStamper stamper = new PdfStamper(reader, outputStream);
        try {

            BaseFont base = (BaseFont) config.getOrDefault("baseFont",pdfConfig.get("baseFont"));

            com.itextpdf.text.Rectangle pageRect;
            PdfGState gs = new PdfGState();
            gs.setFillOpacity((Float) config.getOrDefault("fillOpacity",pdfConfig.get("fillOpacity")));
            gs.setStrokeOpacity((Float) config.getOrDefault("strokeOpacity",pdfConfig.get("strokeOpacity")));
            int total = reader.getNumberOfPages() + 1;

            JLabel label = new JLabel();
            FontMetrics metrics;
            int textH;
            int textW;
            label.setText(waterMarkName);
            metrics = label.getFontMetrics(label.getFont());
            textH = metrics.getHeight();
            textW = metrics.stringWidth(label.getText());

            PdfContentByte under;
            int interval = (int) config.getOrDefault("interval", pdfConfig.get("interval"));
            int rotation = (int) config.getOrDefault("rotation", pdfConfig.get("rotation"));
            int fontSize = (int) config.getOrDefault("fontSize", pdfConfig.get("fontSize"));
            for (int i = 1; i < total; i++) {
                pageRect = reader.getPageSizeWithRotation(i);
                under = stamper.getOverContent(i);
                under.saveState();
                under.setGState(gs);
                under.beginText();
                under.setFontAndSize(base, fontSize);


                for (int height = interval + textH; height < pageRect.getHeight(); height = height + textH * 3) {
                    for (int width = interval + textW; width < pageRect.getWidth() + textW; width = width + textW * 2) {
                        under.showTextAligned(Element.ALIGN_LEFT
                                , waterMarkName, width - textW, height - textH, rotation);
                    }
                }
                // 添加水印文字
                under.endText();
            }

        } finally {
            stamper.close();
            reader.close();
        }
    }

测试

java 复制代码
public static void main(String[] args) throws IOException, DocumentException {
        pdfByText( new FileInputStream("F:\\tmp\\1\\python基于深度学习的音乐推荐方法研究系统.pdf"), new FileOutputStream("F:\\tmp\\1\\python基于深度学习的音乐推荐方法研究系统-pdf.pdf"),"测试水印-abments", new HashMap<>());
    }

效果展示

说明

方法pdfByText的参数设置为InputStream inputStream, OutputStream outputStream,是为了方便java中直接输出给响应体对象。

在使用过程如果遇到问题欢迎留言讨论。

相关推荐
源码云商3 分钟前
基于Spring Boot + Vue的母婴商城系统( 前后端分离)
java·spring boot·后端
Blue.ztl6 分钟前
菜鸟之路day31一一MySQL之多表设计
android·数据库·mysql
冼紫菜3 小时前
【Spring Boot 多模块项目】@MapperScan失效、MapperScannerConfigurer 报错终极解决方案
java·开发语言·mybatis
还听珊瑚海吗4 小时前
基于SpringBoot的抽奖系统测试报告
java·spring boot·后端
练习本4 小时前
Android系统架构模式分析
android·java·架构·系统架构
心灵宝贝6 小时前
IDEA 安装 SpotBugs 插件超简单教程
java·macos·intellij-idea
幼稚诠释青春6 小时前
Java学习笔记(对象)
java·开发语言
TextIn智能文档云平台6 小时前
PDF文档解析新突破:图表识别、公式还原、手写字体处理,让AI真正读懂复杂文档!
图像处理·人工智能·算法·自然语言处理·pdf·ocr
old_power6 小时前
【Python】PDF文件处理(PyPDF2、borb、fitz)
python·pdf
小羊学伽瓦6 小时前
【Java基础】——JVM
java·jvm