gpt4 book ai didi

python - 如何在 python-docx 中获取单元格背景颜色?

转载 作者:行者123 更新时间:2023-12-02 00:12:48 33 4
gpt4 key购买 nike

我正在尝试使用 python-docx 从 MS Word 表中读取数据。有一种方法可以设置表格单元格的背景颜色:

tcPr = cell._tc.get_or_add_tcPr()
shd = OxmlElement("w:shd")
shd.set(qn("w:fill"), rgb2hex(*color))
tcPr.append(shd)

我的任务是相反的,我需要得到现有的颜色。我不擅长 xml,我试过这个:

cell = table.cell(row, col)
tcPr = cell._tc.get_or_add_tcPr().get(qn('w:shd'))

无论颜色如何,它如何为每个读取的单元格返回None

最佳答案

作为scanny建议,我使用解析cell._tc.xml:

pattern = re.compile('w:fill=\"(\S*)\"')
match = pattern.search(cell._tc.xml)
result = match.group(1)

如果有关于颜色的数据,它会返回“自动”或可以转换为 RGB 的背景颜色的十六进制代码。

关于python - 如何在 python-docx 中获取单元格背景颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58324814/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com