在 powerpoint 中,适当调整幻灯片大小有助于使文档看起来更专业。在不同的场合进行演示时,根据投影仪或屏幕的宽高比调整幻灯片尺寸能确保所有观众都能获得最佳的观看体验,从而提高参与度。在本文中,您将学习如何使用 spire.presentation for python 在 python 中更改 powerpoint 演示文稿的幻灯片大小。
安装 spire.presentation for python
本教程需要 spire.presentation for python 和 plum-dispatch v1.7.4。您可以通过以下 pip 命令将它们轻松安装到 windows 中。
pip install spire.presentation
如果您不确定如何安装,请参考此教程: 如何在 windows 中安装 spire.presentation for python
python 将幻灯片大小更改为预设尺寸
spire.presentation for python 提供了 presentation.slidesize.type 属性以将幻灯片大小设置或更改为预设大小。以下是详细步骤:
- 创建 presentation 类的对象。
- 使用 presentation.loadfromfile() 加载 powerpoint 演示文稿。
- 使用 presentation.slidesize.type 属性设置幻灯片大小为枚举类型 screen4x3。
- 使用 presentation.savetofile() 方法保存文档。
- python
from spire.presentation import *
# 创建一个presentation对象
presentation = presentation()
# 加载powerpoint演示文档
presentation.loadfromfile("示例.pptx")
# 设置或更改幻灯片尺寸
presentation.slidesize.type = slidesizetype.screen4x3
# 保存文档
presentation.savetofile("修改尺寸.pptx", fileformat.pptx2016)
# 释放资源
presentation.dispose()
python 将幻灯片大小更改为自定义尺寸
自定义幻灯片大小需要先将幻灯片大小类型更改为“自定义”,然后才能通过 presentation.slidesize.size 属性给演示文稿设置所需的大小。以下是详细的步骤。
- 创建 presentation 类的对象。
- 使用 presentation.loadfromfile() 加载 powerpoint 演示文稿。
- 使用 presentation.slidesize.type 属性设置幻灯片大小类型为自定义。
- 使用 presentation.slidesize.size 自定义幻灯片大小。
- 使用 presentation.savetofile() 方法保存文档。
- python
from spire.presentation import *
# 创建一个presentation对象
presentation = presentation()
# 加载powerpoint演示文档
presentation.loadfromfile("示例.pptx")
# 将幻灯片大小类型更改为自定义
presentation.slidesize.type = slidesizetype.custom
# 设置幻灯片大小
presentation.slidesize.size = sizef(900.0,600.0)
# 保存文档
presentation.savetofile("自定义尺寸.pptx", fileformat.pptx2016)
# 释放资源
presentation.dispose()
申请临时 license
如果您希望删除结果文档中的评估消息,或者摆脱功能限制,请该email地址已收到反垃圾邮件插件保护。要显示它您需要在浏览器中启用javascript。获取有效期 30 天的临时许可证。