为了账号安全,请及时绑定邮箱和手机立即绑定

C# 添加、删除、读取Word文档背景——基于Spire.Cloud.Word

标签:
C# .NET

Spire.Cloud.Word.Sdk提供了接口SetBackgroudColor()、SetBackgroudImage()、DeleteBackground()、GetBackgroudColor()用于设置、删除及读取Word文档背景。本文将以C#程序为例演示如何来调用API接口实现以上内容操作。

dll文件下载及导入:

步骤一:dll文件获取及导入。通过官网下载SDK文件包。

https://img1.sycdn.imooc.com//5df2017e0001ab6412390610.jpg

下载后,解压文件,将Spire.Cloud.Word.Sdk.dll文件及其他三个dll添加引用至VS程序(如下图);或者在程序中通过Nuget搜索安装,直接导入。

https://img1.sycdn.imooc.com//5df2018d000142a702960421.jpg

步骤二:App ID及Key获取。云端创建账号,并在“我的应用”板块中创建应用以获得App ID及App Key。

https://img1.sycdn.imooc.com//5df201a600014efc05540170.jpg

步骤三:源文档上传。在“文档管理”板块,上传源文档。这里如果想方便文档管理,可以新建文件夹,将源文档及结果文档分别保存至相应的文件夹下。不建文件夹时,源文档及结果文档直接保存在根目录。本文示例中,建了两个文件夹,分别用于存放源文档及结果文档。

https://img1.sycdn.imooc.com//5df201af00013e3805540260.jpg

【示例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);           
          }   
     }
 }

背景颜色设置结果:

https://img1.sycdn.imooc.com//5df20281000181a905540415.jpg

【示例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);  
              
            }    
      }
 }

背景图片设置效果:

https://img1.sycdn.imooc.com//5df202fa00017df305540416.jpg

【示例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); 
            }   
       }
  }

文档背景删除效果:

https://img1.sycdn.imooc.com//5df2036200012a4e05540418.jpg

【示例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();              
              }   
         }
    }

背景色读取结果:

https://img1.sycdn.imooc.com//5df2042c000194b605540298.jpg


(本文完)

点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
JAVA开发工程师
手记
粉丝
9
获赞与收藏
48

关注作者,订阅最新文章

阅读免费教程

  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消