首页 > 作文

Java实现给Word文件添加文字水印

更新时间:2023-04-05 01:06:13 阅读: 评论:0

目录
方法思路jar引入java代码

word中设置水印时,可预设的文字或自定义文字设置为水印效果,但通常添加水印效果时,会对所有页面都设置成统一效果,如果需要对每一页或者某个页面设置不同的水印效果,则可以参考本文中的方法。下面,将以java代码为例,对word每一页设置不同的文字水印效果作详细介绍。

方法思路

在给word每一页添加水印前,首先需要在word文档每一页正文的最后一个字符后面插入“连续”分节符,然后在每一节的页眉段落里添加艺术字类型的形状对象,并设置艺术字的坐标位置、样式、对齐方式等。最后保存文档。

jar引入

在程序中引入free spire.doc for java中的spire.doc.jar文件(该文件在lib文件夹下);如果需要通过maven下载导入,可进行如下配置pom.xml:

<repositories>        <repository>            <id>com.e-iceblue</id>            <url>https://repo.e-iceblue.cn/repository/maven-public/</url>        </repository>    </repositories><dependencies>    <dependency>        <groupid>e-iceblue</groupid>        <artifactid>spire.doc.free</artifactid>        <version>5.1.0</version>    </dependency></dependencies>

java代码

给每页添加图片水印时,可参考如下步骤:

创建document类的对象,并通过document.loadfromfile(string filename)方法加载word文档。通过document.getctions().get(int index)方法获口袋里的爸爸取指定节。通过ction.getheadersfooters().getheader()方中国vs菲律宾足球直播法获取页眉,headerfooter.addparagraph()方法添加段落到页眉。创建shapeobject类的对象,并传入参书法家王羲之数设置形状类型为text_plain_text类型的艺术字。并调用方法设置艺术字样式,如艺术字高度、宽度、旋转、颜色、对齐方式等。通过paragraph.getchildobjects().add(idocumentobject entity)方法添加艺术字到段落。最后,通过document.savetofile(string filename, fileformat fileformat)方法保存文档。

不同页面中设置不一样的文字水印效果,只需要获取该页面对应节的页眉段落,然后参考上述用到的方法步骤逐一添加即可。

下面是完整的java代码示例:

import com.spire.doc.*;import com.spire.doc.documents.*;import com.spire.doc.fields.shapeobject;import java.awt.*;public class differenttextwatermark {    public static void main(string[] args) {        //加载word测试文档        document doc = new document();        doc.loadfromfile("test.docx");        //获取文档第一节        ction ction1 = doc.getctions().get(0);        //定义水印文字的纵向坐标位置        float y = (float) (ction1.getpagetup().getpagesize().getheight()/3);        //添加文字水印1        headerfooter header1 = ction1.getheadersfooters().getheader();//获取页眉        header1.getparagraphs().clear();//删除原有页眉格式的段落        paragraph para1= header1.addparagraph();//重新添加段落        //添加艺术字并设置大小        shapeobject shape1 = new shapeobject(doc, shapetype.text_plain_text);        shape1.twidth(362);        shape1.theight(118);        //设置艺术字文本内容、位置及样式(即文本水印字样)        shape1.trotation(315);        shape1.getwordart().ttext("内部使用");        shape1.tfillcolor(new color(128,128,128));        shape1.tlinestyle(shapelinestyle.single);        shape1.tstrokecolor(new color(128,128,128));        shape1.tstrokeweight(0.5);        shape1.tverticalposition(y);        shape1.thorizontalalignment(shapehorizontalalignment.center);        para1.getchildobjects().add(shape1);        //同理设置第二节页眉中的文字水印2        ction ction2 = doc.getctions().get(1);        headerfooter header2 = ction2.getheadersfooters().getheader();        header2.getparagraphs().clear();        paragraph para2= header2.addparagraph();        shapeobject shape2 = new shapeobject(doc, shapetype.text_plain_text);河北省会考成绩查询2013        shape2.twidth(362);        shape2.theight(118);        shape2.trotation(315);        shape2.getwordart().ttext("绝密资料");        shape2.tfillcolor(new color(221,160,221));        shape2.tlinestyle(shapelinestyle.single);        shape2.tstrokecolor(new color(221,160,221));        shape2.tstrokeweight(0.5);        shape2.tverticalposition(y);        shape2.thorizontalalignment(shapehorizontalalignment.center);        para2.getchildobjects().add(shape2);        //同理设置第三节中的页眉中的文字水印3        ction ction3 = doc.getctions().get(2);        headerfooter header3 = ction3.getheadersfooters().getheader();        header3.getparagraphs().clear();        paragraph para3= header3.addparagraph();        shapeobject shape3 = new shapeobject(doc, shapetype.text_plain_text);        shape3.twidth(362);        shape3.theight(118);        shape3.trotation(315);        shape3.getwordart().ttext("禁止传阅");        shape3.tfillcolor(new color(70,130,180));        shape3.tlinestyle(shapelinestyle.single);        shape3.tstrokecolor(new color(70,130,180));        shape3.tstroke双佳weight(0.5);        shape3.tverticalposition(y);        shape3.thorizontalalignment(shapehorizontalalignment.center);        para3.getchildobjects().add(shape3);        //保存文档        doc.savetofile("differenttextwatermark.docx",fileformat.docx_2013);        doc.dispo();    }}

如图,每一页均可显示不同的文字水印效果:

到此这篇关于java实现给word文件添加文字水印的文章就介绍到这了,更多相关java word文字水印内容请搜索www.887551.com以前的文章或继续浏览下面的相关文章希望大家以后多多支持www.887551.com!

本文发布于:2023-04-05 01:06:12,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/edb7aad4f3af764da80a8044ce9cdd2a.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:Java实现给Word文件添加文字水印.doc

本文 PDF 下载地址:Java实现给Word文件添加文字水印.pdf

标签:水印   页眉   文字   方法
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图