从Word文档中检索字体样式,大小和其他属性

时间:2018-06-29 11:27:03

标签: python python-3.x fonts docx python-docx

我正在使用python 3.6,我的问题是可以从现有文档中检索信息,例如文本的字体名称,字体大小等。

我曾尝试使用python-docx来帮助我,但是当我尝试使用run.font时,我只会得到None(无)。

1 个答案:

答案 0 :(得分:0)

我认为这很有帮助。

import docx
path = '/home/karamveer/Downloads/222.docx' #your docx file path
doc = docx.Document(path)
for p in doc.paragraphs:
    name = p.style.font.name
    size = p.style.font.size
    print name, size