在 Word 文档中添加背景色或背景图片是增强文档视觉吸引力的有效方法。无论是在创建专业报告、创意传单还是个人邀请函,加入精心挑选的背景色或背景图片都能将普通文档变为具有视觉吸引力的作品。本文将演示如何使用 Spire.Doc for Python 在 Python 程序中为 Word 文档添加背景色或背景图片。
安装 Spire.Doc for Python
本教程需要用到 Spire.Doc for Python 和 plum-dispatch v1.7.4。可以通过以下 pip 命令将它们轻松安装到 Windows 中。
pip install Spire.Doc
如果您不确定如何安装,请参考此教程:如何在 Windows 中安装 Spire.Doc for Python
用 Python 为 Word 设置背景色
首先将 Word 文档的背景类型更改为 "Color",然后选择一种颜色作为文档背景,即可为 Word 文档设置背景色。具体步骤如下:
- 创建一个 Document 类的对象。
- 使用 Document.LoadFromFile() 方法加载 Word 文档。
- 使用 Document.Background 属性获取文档的背景。
- 使用 Background.Type 属性将背景类型设置为颜色。
- 使用 Background.Color 属性设置背景颜色。
- 使用 Document.SaveToFile() 方法保存文档。
- Python
from spire.doc import *
from spire.doc.common import *
# 创建一个Document类的对象
document = Document()
# 加载Word文档
document.LoadFromFile("示例.docx")
# 获取文档的背景
background = document.Background
# 将背景类型设置为颜色
background.Type = BackgroundType.Color
# 设置背景色
background.Color = Color.get_AliceBlue()
# 保存文档
document.SaveToFile("背景色.docx", FileFormat.Docx2016)
document.Close()
用 Python 为 Word 设置渐变背景
渐变背景是指在两种或多种颜色之间平滑过渡的背景样式。要添加渐变背景,需要先将背景类型更改为 "Gradient",然后指定渐变颜色,最后设置渐变阴影和样式。具体步骤如下:
- 创建一个 Document 类的对象。
- 使用 Document.LoadFromFile() 方法加载 Word 文档。
- 使用 Document.Background 属性获取文档的背景。
- 使用 Background.Type 属性将背景类型设置为渐变。
- 使用 Background.Gradient.Color1 和 Background.Gradient.Color2 属性设置两种渐变色。
- 使用 Background.Gradient.ShadingVariant 和 Background.Gradient.ShadingStyle 属性设置渐变阴影和样式。
- 使用 Document.SaveToFile() 方法保存生成的文档。
- Python
from spire.doc import *
from spire.doc.common import *
# 创建一个Document类的对象
document = Document()
# 加载Word文档
document.LoadFromFile("示例.docx")
# 获取文档的背景
background = document.Background
# 将背景类型设置为渐变
background.Type = BackgroundType.Gradient
# 设置两种渐变颜色
background.Gradient.Color1 = Color.get_White()
background.Gradient.Color2 = Color.get_LightBlue()
# 设置渐变的阴影和样式
background.Gradient.ShadingVariant = GradientShadingVariant.ShadingDown
background.Gradient.ShadingStyle = GradientShadingStyle.Horizontal
# 保存文档
document.SaveToFile("渐变背景.docx", FileFormat.Docx2016)
document.Close()
用 Python 为 Word 设置背景图片
给 Word 文档中设置背景图片时,则需要将背景类型更改为 "Picture",然后指定图片并将其设为背景。具体步骤如下:
- 创建一个 Document 类的对象。
- 使用 Document.LoadFromFile() 方法加载 Word 文档。
- 使用 Document.Background 属性获取文档的背景。
- 使用 Background.Type 属性将背景类型设置为图片。
- 使用 Background.SetPicture() 方法将图片设置为背景。
- 使用 Document.SaveToFile() 方法保存生成的文档。
- Python
from spire.doc import *
from spire.doc.common import *
# 创建一个Document类的对象
document = Document()
# 加载Word文档
document.LoadFromFile("示例.docx")
# 获取文档的背景
background = document.Background
# 将背景类型设置为图片
background.Type = BackgroundType.Picture
# 设置背景图片
background.SetPicture("背景.jpg")
# 保存文档
document.SaveToFile("背景图片.docx", FileFormat.Docx2016)
document.Close()
申请临时 License
如果您希望删除结果文档中的评估消息,或者摆脱功能限制,请该Email地址已收到反垃圾邮件插件保护。要显示它您需要在浏览器中启用JavaScript。获取有效期 30 天的临时许可证。