如何在具有特定Y值的单词(.docx)中插入图像以使用python垂直对齐?

时间:2019-04-24 12:52:06

标签: python image ms-word ms-office

我正在使用python创建(.docx)文件,我想插入行内图像,但它需要垂直对齐以在段落内看起来更好 我在python中使用docx包,在使用

document = Document()
paragraph = document.add_paragraph(''' This is test paragaph''')
run = paragraph.add_run()
run.add_picture('test.png')
paragraph.add_run(''' after the image''')

document.save('addImage.docx')

0 个答案:

没有答案