Word中能夠針對不一樣文檔排版設計要求來設置背景設置顏色。常見的可設置單一顏色、漸變色或加載指定圖片來設置成背景。下面經過Java來設置以上3種Word頁面背景色。html
使用工具:Spire.Doc for Java v2.2.0java
Jar文件導入方法maven
方法1:經過官網下載。在程序下新建一個directory目錄,並命名(本示例中命名爲lib);將控件包lib文件夾下的jar(以下圖1)直接複製到程序中新建的目錄下。複製jar文件後,鼠標右鍵點擊jar文件,選擇」Add as Library」。完成導入(以下圖2)。工具
圖1:測試
圖2:spa
方法2:經過maven導入。參考導入方法(https://www.e-iceblue.cn/licensing/install-spirepdf-for-java-from-maven-repository.html)。設計
import com.spire.doc.*; import com.spire.doc.documents.BackgroundType; import java.awt.*; import java.io.IOException; public class BackgroundColor_Doc { public static void main (String[] args) throws IOException{ //加載測試文 String input="test.docx"; String output="backgroundcolor.docx"; Document doc = new Document(input); //設置單色背景 doc.getBackground().setType(BackgroundType.Color); doc.getBackground().setColor(Color.PINK); //保存文檔 doc.saveToFile(output,FileFormat.Docx_2013); } }
import com.spire.doc.*; import com.spire.doc.documents.BackgroundType; import com.spire.doc.documents.GradientShadingStyle; import com.spire.doc.documents.GradientShadingVariant; import java.awt.*; import java.io.IOException; public class GradientBackground_Doc { public static void main(String[] arg) throws IOException{ //加載測試文檔 String input= "test.docx"; String output="GradientBackgound.docx"; Document doc = new Document(input); //設置漸變色 doc.getBackground().setType(BackgroundType.Gradient); doc.getBackground().getGradient().setColor1(Color.white); doc.getBackground().getGradient().setColor2(Color.green); doc.getBackground().getGradient().setShadingVariant(GradientShadingVariant.Shading_Middle); doc.getBackground().getGradient().setShadingStyle(GradientShadingStyle.Horizontal); //保存文檔 doc.saveToFile(output, FileFormat.Docx_2010); } }
import com.spire.doc.*; import com.spire.doc.documents.BackgroundType; import java.io.IOException; public class ImgBackground_Doc { public static void main(String[] arg) throws IOException { //加載文件 String input= "test.docx"; String output="ImgBackgound.docx"; String img= "lye.png"; Document doc = new Document(input); //設置圖片背景 doc.getBackground().setType(BackgroundType.Picture); doc.getBackground().setPicture(img); //保存文檔 doc.saveToFile(output, FileFormat.Docx); } }
(本文完)code