Java 給Word每一頁設定不同文字水印效果

Mia張發表於2022-02-18

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.getSections().get(int index)方法獲取指定節。
  • 通過Section.getHeadersFooters().getHeader()方法獲取頁首,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");

        //獲取文件第一節
        Section section1 = doc.getSections().get(0);

        //定義水印文字的縱向座標位置
        float y = (float) (section1.getPageSetup().getPageSize().getHeight()/3);

        //新增文字水印1
        HeaderFooter header1 = section1.getHeadersFooters().getHeader();//獲取頁首
        header1.getParagraphs().clear();//刪除原有頁首格式的段落
        Paragraph para1= header1.addParagraph();//重新新增段落
        //新增藝術字並設定大小
        ShapeObject shape1 = new ShapeObject(doc, ShapeType.Text_Plain_Text);
        shape1.setWidth(362);
        shape1.setHeight(118);
        //設定藝術字文字內容、位置及樣式(即文字水印字樣)
        shape1.setRotation(315);
        shape1.getWordArt().setText("內部使用");
        shape1.setFillColor(new Color(128,128,128));
        shape1.setLineStyle(ShapeLineStyle.Single);
        shape1.setStrokeColor(new Color(128,128,128));
        shape1.setStrokeWeight(0.5);
        shape1.setVerticalPosition(y);
        shape1.setHorizontalAlignment(ShapeHorizontalAlignment.Center);
        para1.getChildObjects().add(shape1);

        //同理設定第二節頁首中的文字水印2
        Section section2 = doc.getSections().get(1);
        HeaderFooter header2 = section2.getHeadersFooters().getHeader();
        header2.getParagraphs().clear();
        Paragraph para2= header2.addParagraph();
        ShapeObject shape2 = new ShapeObject(doc, ShapeType.Text_Plain_Text);
        shape2.setWidth(362);
        shape2.setHeight(118);
        shape2.setRotation(315);
        shape2.getWordArt().setText("絕密資料");
        shape2.setFillColor(new Color(221,160,221));
        shape2.setLineStyle(ShapeLineStyle.Single);
        shape2.setStrokeColor(new Color(221,160,221));
        shape2.setStrokeWeight(0.5);
        shape2.setVerticalPosition(y);
        shape2.setHorizontalAlignment(ShapeHorizontalAlignment.Center);
        para2.getChildObjects().add(shape2);

        //同理設定第三節中的頁首中的文字水印3
        Section section3 = doc.getSections().get(2);
        HeaderFooter header3 = section3.getHeadersFooters().getHeader();
        header3.getParagraphs().clear();
        Paragraph para3= header3.addParagraph();
        ShapeObject shape3 = new ShapeObject(doc, ShapeType.Text_Plain_Text);
        shape3.setWidth(362);
        shape3.setHeight(118);
        shape3.setRotation(315);
        shape3.getWordArt().setText("禁止傳閱");
        shape3.setFillColor(new Color(70,130,180));
        shape3.setLineStyle(ShapeLineStyle.Single);
        shape3.setStrokeColor(new Color(70,130,180));
        shape3.setStrokeWeight(0.5);
        shape3.setVerticalPosition(y);
        shape3.setHorizontalAlignment(ShapeHorizontalAlignment.Center);
        para3.getChildObjects().add(shape3);

        //儲存文件
        doc.saveToFile("DifferentTextWatermark.docx",FileFormat.Docx_2013);
        doc.dispose();
    }
}

如圖,每一頁均可顯示不同的文字水印效果:

 

相關推薦閱讀:Java 給Word每一頁設定不同圖片水印效果

 

—End—

相關文章