重复水印,也称为多行水印,是一种在 word 文档的页面上以固定间隔多次出现的水印。与普通水印相比,重复水印更难去除或遮盖,因此可以为文档提供更好的保护,防止未经授权的复制和分发。本文将使用 spire.doc for java 演示如何通过程序插入重复文本水印和重复图像水印到 word 文档。
安装 spire.doc for java
首先,您需要在 java 程序中添加 spire.doc.jar 文件作为依赖项。您可以从此链接下载 jar 文件;如果您使用 maven,则可以通过在 pom.xml 文件中添加以下代码导入 jar 文件。
com.e-iceblue
e-iceblue
https://repo.e-iceblue.cn/repository/maven-public/
e-iceblue
spire.doc
11.9.5
插入重复文本水印到 word 文档
我们可以通过在页眉中以指定间隔添加重复的艺术字来向 word 文档插入重复文本水印。具体步骤如下:
- 创建一个 document 的对象。
- 使用 document.loadfromfile() 方法载入 word 文档。
- 创建一个 shapeobject 的对象,并使用 shapeobject.getwordart().settext() 方法设置艺术字的文本。
- 指定旋转角度、垂直重复次数和水平重复次数。
- 使用 shapeobject 类下的方法设置形状的格式。
- 通过循环遍历文档中的各个节,使用 paragraph.getchildobjects().add(shapeobject) 方法将艺术字多次添加到每个节的页眉中,从而实现以指定的间隔插入重复水印。
- 使用 document.savetofile() 方法保存文档。
- java
import com.spire.doc.document;
import com.spire.doc.headerfooter;
import com.spire.doc.section;
import com.spire.doc.documents.paragraph;
import com.spire.doc.documents.shapelinestyle;
import com.spire.doc.documents.shapetype;
import com.spire.doc.fields.shapeobject;
import java.awt.*;
public class insertrepeatingtextwatermark {
public static void main(string[] args) {
//创建document的对象
document doc = new document();
//载入word文档
doc.loadfromfile("示例.docx");
//创建shapeobject的对象并设置艺术字的文本
shapeobject shape = new shapeobject(doc, shapetype.text_plain_text);
shape.getwordart().settext("草稿");
//设置文本水印的旋转角度以及垂直和水平重复次数
double rotation = 315;
int ver = 5;
int hor = 3;
//设置艺术字的格式
shape.setwidth(60);
shape.setheight(20);
shape.setverticalposition(30);
shape.sethorizontalposition(20);
shape.setrotation(rotation);
shape.getwordart().setfontfamily("harmonyos sans sc");
shape.setfillcolor(color.blue);
shape.setlinestyle(shapelinestyle.single);
shape.setstrokecolor(color.cyan);
shape.setstrokeweight(1);
//循环遍历文档中的节
for (section section : (iterable) doc.getsections()
) {
//获取节的页眉
headerfooter header = section.getheadersfooters().getheader();
//添加一个段落到页眉中
paragraph paragraph = header.addparagraph();
for (int i = 0; i < ver; i ) {
for (int j = 0; j < hor; j ) {
//将艺术字添加到页眉中
shape = (shapeobject) shape.deepclone();
shape.setverticalposition((float) (section.getpagesetup().getpagesize().getheight()/ver * i math.sin(rotation) * shape.getwidth()/2));
shape.sethorizontalposition((float) ((section.getpagesetup().getpagesize().getwidth()/hor - shape.getwidth()/2) * j));
paragraph.getchildobjects().add(shape);
}
}
}
//保存文档
doc.savetofile("重复文本水印.docx");
doc.dispose();
}
}
插入重复图片水印到 word 文档
同样,我们也可以通过在文档的页眉中按照指定间隔添加重复的图片来实现向 word 文档插入重复图像水印。具体步骤如下:
- 创建一个 document 的对象。
- 使用 document.loadfromfile() 方法载入 word 文档。
- 使用 docpicture.loadimage() 方法载入一张图片。
- 使用 docpicture.settextwrappingstyle(textwrappingstyle.behind) 方法将图片的文本环绕方式设置为衬于文字下方。
- 指定垂直和水平重复次数。
- 通过循环遍历文档中的各个节,使用 paragraph.getchildobjects().add() 方法将图片多次添加到每个节的页眉中,从而实现以指定的间隔插入重复图片水印。
- 使用 document.savetofile() 方法保存文档。
- java
import com.spire.doc.document;
import com.spire.doc.fileformat;
import com.spire.doc.headerfooter;
import com.spire.doc.section;
import com.spire.doc.documents.paragraph;
import com.spire.doc.documents.textwrappingstyle;
import com.spire.doc.fields.docpicture;
public class insertrepeatingpicturewatermark {
public static void main(string[] args) {
//创建document的对象
document doc = new document();
//载入word文档
doc.loadfromfile("示例.docx");
//载入图片
docpicture pic = new docpicture(doc);
pic.loadimage("水印.png");
//将图片的文本环绕方式设置为衬于文字下方
pic.settextwrappingstyle(textwrappingstyle.behind);
//设置垂直和水平重复次数
int ver = 4;
int hor = 3;
//循环遍历文档中的节
for (section section : (iterable) doc.getsections()
) {
//获取节的页眉
headerfooter header = section.getheadersfooters().getheader();
//在页眉中添加一个段落
paragraph paragraph = header.addparagraph();
for (int i = 0; i < ver; i ) {
for (int j = 0; j < hor; j ) {
//添加图片到页眉中
pic = (docpicture) pic.deepclone();
pic.setverticalposition((float) ((section.getpagesetup().getpagesize().getheight()/ver) * i));
pic.sethorizontalposition((float) (section.getpagesetup().getpagesize().getwidth()/hor - pic.getwidth()/2) * j);
paragraph.getchildobjects().add(pic);
}
}
}
//保存文档
doc.savetofile("重复图片水印.docx", fileformat.auto);
doc.dispose();
}
}
申请临时 license
如果您希望删除结果文档中的评估消息,或者摆脱功能限制,请该email地址已收到反垃圾邮件插件保护。要显示它您需要在浏览器中启用javascript。获取有效期 30 天的临时许可证。