python pptx 更改整个 table 字体大小
python pptx change entire table font size
我使用 python 2.7 和 python pptx 来创建一个包含幻灯片的演示文稿,其中包含 table 数据。
我需要控制 table 和文本的大小。
我寻找了这样做的方法,并且发现了一些关于使用段落 and here enter link description here
更改特定单元格字体大小的方法
但是我找不到关于更改整个 table 的文本大小的任何信息...
想法?
谢谢
table 中的字体大小是在 运行 × 运行 的基础上设置的。所以你可以在添加文本时这样做,或者你可以在之后做这样的事情:
from pptx.util import Pt
def iter_cells(table):
for row in table.rows:
for cell in row.cells:
yield cell
for cell in iter_cells(table):
for paragraph in cell.text_frame.paragraphs:
for run in paragraph.runs:
run.font.size = Pt(24)
我使用 python 2.7 和 python pptx 来创建一个包含幻灯片的演示文稿,其中包含 table 数据。
我需要控制 table 和文本的大小。
我寻找了这样做的方法,并且发现了一些关于使用段落
但是我找不到关于更改整个 table 的文本大小的任何信息...
想法? 谢谢
table 中的字体大小是在 运行 × 运行 的基础上设置的。所以你可以在添加文本时这样做,或者你可以在之后做这样的事情:
from pptx.util import Pt
def iter_cells(table):
for row in table.rows:
for cell in row.cells:
yield cell
for cell in iter_cells(table):
for paragraph in cell.text_frame.paragraphs:
for run in paragraph.runs:
run.font.size = Pt(24)