如何增加python生成的powerpoint演示文稿的幻灯片大小

时间:2018-02-04 03:48:08

标签: python-2.7 powerpoint

我试图将多个图表放入python生成的幻灯片中,但我需要将幻灯片的大小更宽。我查看了提供的可用文档,这些文档并不多。

2 个答案:

答案 0 :(得分:2)

我能够通过调整prs的宽度和高度来解决这个问题

prs = Presentation()

prs.slide_width = 11887200

prs.slide_height = 6686550

答案 1 :(得分:0)

pptx生成的幻灯片的默认宽度和高度为10英寸宽和7.5英寸高。以下代码将更改其默认幻灯片宽度和高度:

from pptx import Presentation
from pptx.util import Inches


prs = Presentation()
# set width and height to 16 and 9 inches.
prs.slide_width = Inches(16)
prs.slide_height = Inches(9)