Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save documentprocessing/dad32ac9f0fae1b726bd618351cb30c8 to your computer and use it in GitHub Desktop.
Save documentprocessing/dad32ac9f0fae1b726bd618351cb30c8 to your computer and use it in GitHub Desktop.
Insert picture in DOCX with Python-dotx library
from docx import Document
document = Document()
document.add_picture('file-name-of-image.png')
document.save('docx with image from file.docx')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment