18 lines
329 B
Python
18 lines
329 B
Python
# -*- coding: utf-8 -*-
|
|
'''
|
|
Created : 2017-09-03
|
|
|
|
@author: Eric Lapouyade
|
|
'''
|
|
|
|
from docxtpl import DocxTemplate
|
|
|
|
DEST_FILE = 'test_files/replace_picture.docx'
|
|
|
|
tpl=DocxTemplate('test_files/replace_picture_tpl.docx')
|
|
|
|
context = {}
|
|
|
|
tpl.replace_pic('python_logo.png','test_files/python.png')
|
|
tpl.render(context)
|
|
tpl.save(DEST_FILE) |