我正在使用python 3.6,我的问题是可以从现有文档中检索信息,例如文本的字体名称,字体大小等。
我曾尝试使用python-docx来帮助我,但是当我尝试使用run.font时,我只会得到None(无)。
答案 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