图片具有吸引观众并增强对内容理解的能力。通过在 powerpoint 演示文稿中添加相关且视觉吸引力强的图片,您可以有效地传达复杂的思想,并使您的演示更加难忘和有影响力。在本文中,我们将解释如何使用 spire.presentation for python 在 python 中向 powerpoint 演示文稿中添加图片。
安装 spire.presentation for python
本教程需要用到 spire.presentation for python 和 plum-dispatch v1.7.4。可以通过以下 pip 命令将它们轻松安装到 vs code 中。
pip install spire.presentation
如果您不确定如何安装,请参考此教程: 如何在 vs code 中安装 spire.presentation for python
python 向幻灯片添加图片
spire.presentation for python 提供了 islide.shapes.appendembedimagebyimagedata() 方法,用于向特定幻灯片添加图片。具体步骤如下:
- 创建 presentation 类的对象。
- 使用 presentation.loadfromfile() 方法加载一个 powerpoint 演示文稿。
- 通过 presentation.slides[index] 属性获取特定幻灯片(根据索引)。
- 使用 presentation.images.appendstream() 方法加载图片数据
- 使用 islide.shapes.appendembedimagebyimagedata() 方法将图片数据添加到幻灯片中。
- 使用 presentation.savetofile() 方法保存结果演示文稿。
- python
from spire.presentation.common import *
from spire.presentation import *
# 输入文件和输出文件的路径
inputfile = "示例文档.pptx"
outputfile = "添加图片到幻灯片.pptx"
# 创建一个 presentation 对象并从输入文件加载 ppt 文档
presentation = presentation()
presentation.loadfromfile(inputfile)
# 获取第一张幻灯片对象
slide = presentation.slides[0]
# 图片文件路径
imagefile = "image.png"
# 通过流方式加载图片数据
stream = stream(imagefile)
imagedata = presentation.images.appendstream(stream)
# 获取图片宽度和高度
width = imagedata.width
height = imagedata.height
# 定义图片在幻灯片中的位置信息
rect1 = rectanglef.fromltrb(20, 20, 20 width, 20 height)
# 在幻灯片上添加嵌入式图片
image = slide.shapes.appendembedimagebyimagedata(shapetype.rectangle, imagedata, rect1)
# 设置图片的外框线为无填充效果
image.line.filltype = fillformattype.none
# 将更改后的 ppt 文档保存为输出文件,使用 pptx2010 格式
presentation.savetofile(outputfile, fileformat.pptx2010)
# 释放 presentation 对象所占用的资源
presentation.dispose()
python 向幻灯片母版添加图片
幻灯片母版是控制演示文稿中所有其他幻灯片的格式和样式的顶层幻灯片。当您对幻灯片母版进行更改,例如添加标志、修改背景或更改字体样式时,这些更改会自动应用于基于该幻灯片母版的所有幻灯片。如果您希望一张图片出现在所有幻灯片上,可以将其添加到幻灯片母版中。
spire.presentation for python 提供了 imasterslide.shapes.appendembedimagebyimagedata() 方法,用于向幻灯片母版添加图片。具体步骤如下:
- 创建 presentation 类的对象。
- 使用 presentation.loadfromfile() 方法加载一个 powerpoint 演示文稿。
- 通过 presentation.masters[index] 属性获取特定的幻灯片母版(根据索引)。
- 使用 presentation.images.appendstream() 方法加载图片数据
- 使用 imasterslide.shapes.appendembedimagebyimagedata() 方法将图片数据添加到幻灯片母版中。
- 使用 presentation.savetofile() 方法保存结果演示文稿。
- python
from spire.presentation.common import *
from spire.presentation import *
# 输入文件和输出文件的路径
inputfile = "输入文档.pptx"
outputfile = "添加图片到母板.pptx"
# 创建一个 presentation 对象并从输入文件加载 ppt 文档
presentation = presentation()
presentation.loadfromfile(inputfile)
# 获取幻灯片母板对象
master = presentation.masters[0]
# 图片文件路径
imagefile = "logo.png"
# 通过流方式加载图片数据
stream = stream(imagefile)
imagedata = presentation.images.appendstream(stream)
# 定义图片在母板中的位置信息
rect1 = rectanglef.fromltrb(40, 40, 40 imagedata.width, 40 imagedata.height)
# 在母板上添加嵌入式图片
image = master.shapes.appendembedimagebyimagedata(shapetype.rectangle, imagedata, rect1)
# 设置图片的外框线为无填充效果
image.line.filltype = fillformattype.none
# 将更改后的 ppt 文档保存为输出文件,使用 pptx2010 格式
presentation.savetofile(outputfile, fileformat.pptx2010)
# 释放 presentation 对象所占用的资源
presentation.dispose()
申请临时 license
如果您希望删除结果文档中的评估消息,或者摆脱功能限制,请该email地址已收到反垃圾邮件插件保护。要显示它您需要在浏览器中启用javascript。获取有效期 30 天的临时许可证。