doc1.add_picture('C:\\Users\\13032\\Desktop\\45.jpg', width=Inches(1.2), height=Inches(0.4)) 让图片居中
时间: 2023-07-07 20:46:07 浏览: 250
图片居中设置
要让图片居中,可以使用 Python-docx 库中的 Paragraph 对象,在插入图片前先插入一个空的段落对象,并将其对齐方式设置为居中。具体代码如下:
```
from docx import Document
from docx.shared import Inches
from docx.enum.text import WD_ALIGN_PARAGRAPH
document = Document()
# 插入空的段落对象,并将其对齐方式设置为居中
paragraph = document.add_paragraph()
paragraph.alignment = WD_ALIGN_PARAGRAPH.CENTER
# 在空的段落对象中插入图片
picture = paragraph.add_picture('C:\\Users\\13032\\Desktop\\45.jpg', width=Inches(1.2), height=Inches(0.4))
document.save('demo.docx')
```
这样就可以将图片插入到居中对齐的段落对象中,从而实现让图片居中的效果。
阅读全文