中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何通過Java設置Word頁面背景色

發布時間:2021-10-27 16:35:21 來源:億速云 閱讀:148 作者:柒染 欄目:編程語言

如何通過Java設置Word頁面背景色,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

前言

Word中可以針對不同文檔排版設計要求來設置背景設置顏色。常見的可設置單一顏色、漸變色或加載圖片來設置成背景。下面通過Java來設置以上3種Word頁面背景色。

使用工具:Spire.Doc for Java v2.2.0

Jar文件導入方法

方法1:通過官網下載。在程序下新建一個directory目錄,并命名(本示例中命名為lib);將控件包中lib文件夾下的Spire.Doc.jar(如下圖1)直接復制到程序中新建的目錄下。復制jar文件后,鼠標右鍵點擊jar文件,選擇”Add as Library”。完成導入

方法2:通過maven導入。

Java代碼示例(供參考)

【示例1】添加單一顏色的背景色

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);  }}

【示例2】添加漸變背景色

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);  }}

【示例3】加載圖片設置成背景

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);  }}

關于如何通過Java設置Word頁面背景色問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

祁阳县| 金山区| 灵台县| 宾川县| 怀柔区| 景宁| 贵定县| 平安县| 吴川市| 合川市| 区。| 武义县| 吉隆县| 桂东县| 福建省| 勐海县| 南宁市| 平谷区| 兴安盟| 闽侯县| 娄底市| 双流县| 湖州市| 天柱县| 威信县| 赤城县| 车致| 红桥区| 鹿泉市| 靖边县| 疏勒县| 平塘县| 广河县| 巨鹿县| 阳新县| 远安县| 阜南县| 哈密市| 渑池县| 泗洪县| 红桥区|