C# 操作Word——设置Word文档背景色(纯色、渐变色、图片背景色) _.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > C# 操作Word——设置Word文档背景色(纯色、渐变色、图片背景色)

C# 操作Word——设置Word文档背景色(纯色、渐变色、图片背景色)

 2019/1/8 15:40:00  Miaonly  程序员俱乐部  我要评论(0)
  • 摘要:简介Word是我们日常生活、学习和工作中必不可少的文档处理工具。精致美观的文档能给人带来阅读时视觉上的美感。在本篇文章中,将介绍如何使用组件FreeSpire.Docfor.NET(社区版)给Word设置文档背景。下面的示例中,给Word添加背景分为三种情况来讲述纯色背景渐变色背景图片背景工具使用:下载安装控件FreeSpire.Doc后,在项目程序中添加Spire.Doc.dll即可(该dll可在安装文件下Bin文件夹中获取)一、设置纯色背景色【C#】usingSpire.Doc
  • 标签:

简介

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

class="MsoNormal" style="line-height: 115%;">?

  • 纯色背景
  • 渐变色背景
  • 图片背景

工具使用:下载安装控件Free Spire.Doc后,在项目程序中添加Spire.Doc.dll即可(该dll可在安装文件下Bin文件夹中获取)

一、设置纯色背景色

【C#】

?

?

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#】

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#】

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

?

调试运行,生成文档



?

以上全部内容为三种添加Word文档背景的方法,如果喜欢本文,欢迎转载(转载请注明出处)。

?

  • 大小: 62 KB
  • 大小: 108.1 KB
  • 大小: 427.4 KB
  • 查看图片附件
  • 相关文章
发表评论
用户名: 匿名