我试图将多个图表放入python生成的幻灯片中,但我需要将幻灯片的大小更宽。我查看了提供的可用文档,这些文档并不多。
答案 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)