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

溫馨提示×

溫馨提示×

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

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

C#怎么設置、刪除、讀取Word文檔背景

發布時間:2021-09-01 14:38:12 來源:億速云 閱讀:193 作者:chen 欄目:編程語言

這篇文章主要講解了“C#怎么設置、刪除、讀取Word文檔背景”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“C#怎么設置、刪除、讀取Word文檔背景”吧!

Spire.Cloud.Word.Sdk提供了接口SetBackgroudColor()、SetBackgroudImage()、DeleteBackground()、GetBackgroudColor()用于設置、刪除及讀取Word文檔背景。本文將以C#程序為例演示如何來調用API接口實現以上內容操作。

必要步驟:

步驟一:dll文件獲取及導入。通過官網 下載SDK文件包。

C#怎么設置、刪除、讀取Word文檔背景

下載后,解壓文件,將Spire.Cloud.Word.Sdk.dll文件及其他三個dll添加引用至VS程序(如下圖);或者在程序中通過Nuget搜索安裝,直接導入。

C#怎么設置、刪除、讀取Word文檔背景

步驟二:App ID及Key獲取。在 云端創建賬號,并在“我的應用”板塊中創建應用以獲得App ID及App Key。

C#怎么設置、刪除、讀取Word文檔背景

步驟三:源文檔上傳。在“文檔管理”板塊,上傳源文檔。這里如果想方便文檔管理,可以新建文件夾,將源文檔及結果文檔分別保存至相應的文件夾下。不建文件夾時,源文檔及結果文檔直接保存在根目錄。本文示例中,建了兩個文件夾,分別用于存放源文檔及結果文檔。

C#怎么設置、刪除、讀取Word文檔背景

【示例1】設置背景顏色

using Spire.Cloud.Word;
using Spire.Cloud.Word.Sdk.Api;
using Spire.Cloud.Word.Sdk.Client;
using Spire.Cloud.Word.Sdk.Model;
using System;
 
namespace BackgroundColor
{
    class Program
    {
        static String appId = "App ID";
        static String appKey = "App Key";
        static void Main(string[] args)
        {
            //配置賬號信息
            Configuration wordConfiguration = new Configuration(appId, appKey);
 
            //創建BackgroundApi實例
            BackgroundApi backgroundApi = new BackgroundApi(wordConfiguration);
            
            //源文檔
            var fileName = "testfile.docx";            
            string name = fileName;
 
            //源文檔所在文件夾,若沒有文件夾則設置為null
            string folder = "input";
 
            //設置背景顏色RGB值
            Color color = new Color(255, 255, 205);
 
            //設置文檔密碼,如果沒有密碼,則設置為null
            string password = null;
 
            //使用冰藍云配置的2G空間存貯文檔,可設置為null
            string storage = null;
 
            //設置生成文檔的路徑及文檔名稱
            string destFilePath = "output/BackgroundColor.docx";
 
            //調用方法設置背景顏色
            backgroundApi.SetBackgroudColor(name,color, folder, storage, password, destFilePath);            
        }
    }
}

背景顏色設置結果:

C#怎么設置、刪除、讀取Word文檔背景

【示例2】設置背景圖片

using Spire.Cloud.Word.Sdk;
using Spire.Cloud.Word.Sdk.Api;
using Spire.Cloud.Word.Sdk.Client;
using System;
 
 
namespace BackgroundImg
{
    class Program
    {
        static String appId = "App ID";
        static String appKey = "App Key";
        static void Main(string[] args)
        {
            //配置賬號信息
            Configuration wordConfiguration = new Configuration(appId, appKey);
 
            //創建BackgroundApi實例
            BackgroundApi backgroundApi = new BackgroundApi(wordConfiguration);
 
            //源文檔及圖片
            var fileName = "testfile.docx";
            var imageName = "ss.png";
            string name = fileName;
 
            //源文檔所在文件夾,若沒有文件夾則設置為null
            string folder = "input";
            string imagePath = "input" + "/"+ imageName;
 
            //設置文檔密碼,如果沒有密碼,則設置為null
            string password = null;
 
            //使用冰藍云配置的2G空間存貯文檔,可設置為null
            string storage = null;
 
            //設置生成文檔的路徑及文檔名稱
            string destFilePath = "output/BackgroundImg.docx";
 
            //調用方法設置背景
            backgroundApi.SetBackgroudImage(name, imagePath, folder, storage, password, destFilePath);
        }
    }
}

背景圖片設置效果:

C#怎么設置、刪除、讀取Word文檔背景

【示例3】刪除背景(包括背景顏色及背景圖片)

using Spire.Cloud.Word.Sdk;
using Spire.Cloud.Word.Sdk.Api;
using Spire.Cloud.Word.Sdk.Client;
using System;
 
namespace DeleteBackground
{
    class Program
    {
        static String appId = "App ID";
        static String appKey = "App Key";
        static void Main(string[] args)
        {
            //配置賬號信息
            Configuration wordConfiguration = new Configuration(appId, appKey);
 
            //創建BackgroundApi實例
            BackgroundApi backgroundApi = new BackgroundApi(wordConfiguration);
 
            //源文檔
            var fileName = "BackgroundImg.docx";
            string name = fileName;
 
            //源文檔所在文件夾,若沒有文件夾則設置為null
            string folder = "output";
 
            //設置文檔密碼,如果沒有密碼,則設置為null
            string password = null;
 
            //使用冰藍云配置的2G空間存貯文檔,可設置為null
            string storage = null;
 
            //設置生成文檔的路徑及文檔名稱
            string destFilePath = "output/DeleteBackground.docx";
 
            //調用方法刪除文檔中背景
            backgroundApi.DeleteBackground(name, password, folder, storage, destFilePath);
        }
    }
}

文檔背景刪除效果:

C#怎么設置、刪除、讀取Word文檔背景

【示例4】讀取背景顏色

using Spire.Cloud.Word.Sdk.Api;
using Spire.Cloud.Word.Sdk.Client;
using Spire.Cloud.Word.Sdk.Model;
using System;
 
namespace GetBackground
{
    class Program
    {
        static String appId = "App ID";
        static String appKey = "App Key";
        static void Main(string[] args)
        {
            //配置賬號信息
            Configuration wordConfiguration = new Configuration(appId, appKey);
 
            //創建BackgroundApi實例
            BackgroundApi backgroundApi = new BackgroundApi(wordConfiguration);
 
            //源文檔
            var fileName = "BackgroundColor.docx";         
            string name = fileName;            
 
            //源文檔密碼,若無密碼可設置為null
            string password = null;
 
            //源文檔所在文件夾,若沒有文件夾則設置為null
            string folder = "output";
 
            //使用冰藍云配置的2G空間存貯文檔,可設置為null
            string storage = null;
            
            //獲取文檔背景色
            System.Console.WriteLine(backgroundApi.GetBackgroudColor(name, password, folder, storage));
            System.Console.ReadLine();       
        }
    }
}

背景色讀取結果:

C#怎么設置、刪除、讀取Word文檔背景

感謝各位的閱讀,以上就是“C#怎么設置、刪除、讀取Word文檔背景”的內容了,經過本文的學習后,相信大家對C#怎么設置、刪除、讀取Word文檔背景這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

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

AI

新平| 瑞昌市| 长丰县| 莱芜市| 柘城县| 垫江县| 韶关市| 收藏| 怀化市| 海林市| 高碑店市| 彭山县| 桂平市| 内丘县| 湘潭市| 云南省| 泾阳县| 涪陵区| 丘北县| 谷城县| 许昌县| 吴忠市| 麦盖提县| 廊坊市| 万宁市| 左贡县| 都匀市| 上林县| 淮阳县| 沁源县| 萨嘎县| 义马市| 临夏市| 谷城县| 盈江县| 绥滨县| 仁布县| 潞城市| 庆云县| 钟山县| 崇信县|