gpt4 book ai didi

C#设置Word文档背景的三种方法(纯色/渐变/图片背景)

转载 作者:qq735679552 更新时间:2022-09-28 22:32:09 25 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章C#设置Word文档背景的三种方法(纯色/渐变/图片背景)由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

word是我们日常生活、学习和工作中必不可少的文档处理工具。精致美观的文档能给人带来阅读时视觉上的美感。在本篇文章中,将介绍如何使用组件free spire.doc for .net(社区版)给word设置文档背景。下面的示例中,给word添加背景分为三种情况来讲述,即添加纯色背景,渐变色背景和图片背景.

工具使用:下载安装控件free spire.doc后,在项目程序中添加spire.doc.dll即可(该dll可在安装文件下bin文件夹中获取) 。

1、添加纯色背景

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using spire.doc;
using system.drawing;
namespace addbackground
{
  class program
  {
   static void main( string [] args)
   {
    //创建一个document类对象,并加载word文档
    document document = new document();
    document.loadfromfile( @"c:\users\administrator\desktop\test.docx" );
    //设置文档的背景填充模式为颜色填充
    document.background.type = spire.doc.documents.backgroundtype.color;
    //设置背景颜色
    document.background.color = color.mistyrose;
    //保存并打开文档
    document.savetofile( "purebackground.docx" , fileformat.docx2013);
    system.diagnostics.process.start( "purebackground.docx" );
   }
  }
}

调试运行程序后,生成文档 。

C#设置Word文档背景的三种方法(纯色/渐变/图片背景)

2、添加渐变色背景

  。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
using spire.doc;
using system.drawing;
using spire.doc.documents;
namespace addgradientbackground
{
  class program
  {
   static void main( string [] args)
   {
    //创建document类实例,并加载word文档
    document document = new document();
    document.loadfromfile( @"c:\users\administrator\desktop\test.docx" );
    //设置文档的背景填充模式为渐变填充
    document.background.type = spire.doc.documents.backgroundtype.gradient;
    //设置渐变背景颜色
    backgroundgradient gradient = document.background.gradient;
    gradient.color1 = color.lightskyblue;
    gradient.color2 = color.palegreen;
    //设置渐变模式
    gradient.shadingvariant = gradientshadingvariant.shadingmiddle;
    gradient.shadingstyle = gradientshadingstyle.fromcenter;
    //保存并打开文档
    document.savetofile( "gradientcolor.docx" , fileformat.docx2013);
    system.diagnostics.process.start( "gradientcolor.docx" );
   }
  }
}

C#设置Word文档背景的三种方法(纯色/渐变/图片背景)

 3、添加图片背景

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using system.drawing;
using spire.doc;
namespace imagebackground
{
  class program
  {
   static void main( string [] args)
   {
    //创建一个document类实例,并加载word文档
    document document = new document();
    document.loadfromfile( @"c:\users\administrator\desktop\test.docx" );
    //设置文档的背景填充模式为图片填充
    document.background.type = spire.doc.documents.backgroundtype.picture;
    //设置背景图片
    document.background.picture = image.fromfile( @"c:\users\administrator\desktop\1.jpg" );
    //保存并打开文档
    document.savetofile( "imagebackground.docx" , fileformat.docx2013);
    system.diagnostics.process.start( "imagebackground.docx" );
   }
  }
}

C#设置Word文档背景的三种方法(纯色/渐变/图片背景)

总结 。

以上所述是小编给大家介绍的c#设置word文档背景的三种方法(纯色/渐变/图片背景),希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对我网站的支持! 。

原文链接:https://www.cnblogs.com/Yesi/archive/2018/03/12/8549916.html 。

最后此篇关于C#设置Word文档背景的三种方法(纯色/渐变/图片背景)的文章就讲到这里了,如果你想了解更多关于C#设置Word文档背景的三种方法(纯色/渐变/图片背景)的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com