python 向docx中插入图片
时间: 2023-11-06 07:06:26 浏览: 162
使用说明1
你可以使用 Python 的 python-docx 模块来向 docx 中插入图片。下面是一个简单的示例代码:
```python
from docx import Document
from docx.shared import Inches
document = Document()
# 添加一张图片
document.add_picture('image.png', width=Inches(1.25), height=Inches(1.25))
# 保存文档
document.save('document.docx')
```
在上面的代码中,我们使用 `add_picture` 方法来添加图片,第一个参数是图片的路径,第二个参数是图片的宽度,第三个参数是图片的高度。你可以根据自己的需要调整这些参数。
需要注意的是,`python-docx` 模块需要安装,可以使用 pip 来安装:
```
pip install python-docx
```
阅读全文