python pptx 确定一个table 宽度和高度

python pptx determine a table width and height

我使用 python 2.7 和 python pptx。

我有一个 table 数据,需要它达到一定的宽度和高度,

我了解到我可以像这样更改文本大小

但我希望更改整个 table 大小以适应确切位置,并更改字体大小,并操纵行高和列宽,这一切似乎太复杂且难以处理,

我发现我可以将 table 转换为图像,然后轻松更改它的大小,但感觉这不是正确的做法。

想法?

取自 pptx documentation 的示例给出了一个很好的示例,说明如何使用给定的总体 widthheight 创建 table,如下所示:

from pptx import Presentation
from pptx.util import Inches

prs = Presentation()
title_only_slide_layout = prs.slide_layouts[5]
slide = prs.slides.add_slide(title_only_slide_layout)
shapes = slide.shapes

shapes.title.text = 'Adding a Table'

rows = cols = 2
left = top = Inches(2.0)
width = Inches(6.0)
height = Inches(0.8)

table = shapes.add_table(rows, cols, left, top, width, height).table

# set column widths
table.columns[0].width = Inches(2.0)
table.columns[1].width = Inches(4.0)

# write column headings
table.cell(0, 0).text = 'Foo'
table.cell(0, 1).text = 'Bar'

# write body cells
table.cell(1, 0).text = 'Baz'
table.cell(1, 1).text = 'Qux'

prs.save('test.pptx')

util Module 还提供了指定维度的替代方法,例如 CentipointsCmEmuMmPtPx.