我正在使用pptx模块生成带有表的幻灯片。我可以更改每个单元格中的字体,但我还需要更改文本中特定单词的字体。在示例“生成随机句子作为示例”中。在这个世界上,“随机”是大胆的。
在text color in python-pptx module发现了类似的情况,但该情况适用于“文本框架”而不适用于单元格。
欢迎任何建议/建议!
谢谢
答案 0 :(得分:0)
如果您使用cell
,而该示例使用text_frame
(或者在该特定示例中可能使用tf
),则其余代码相同。因此,要创建“带有红色单词的句子”,其中“红色”以红色显示:
from docx.shared import RGBColor
# ---reuse existing default single paragraph in cell---
paragraph = cell.paragraphs[0]
# ---add distinct runs of text one after the other to
# --- form paragraph contents
paragraph.add_run("A sentence with a ")
# ---colorize the run with "red" in it---
red_run = paragraph.add_run("red")
red_run.font.color.rgb = RGBColor(255, 0, 0)
paragraph.add_run(" word.")
您可以在以下文档中找到其他详细信息:
https://python-docx.readthedocs.io/en/latest/user/text.html#font-color