docxtpl – 向表格里插入图片
以写文件的形式将图片插入,循环变量,循环插入图片
# -*- coding: utf-8 -*-
'''
Created : 2017-01-14
@author: Eric Lapouyade
'''
from docxtpl import DocxTemplate, InlineImage
# for height and width you have to use millimeters (Mm), inches or points(Pt) class :
from docx.shared import Mm
import jinja2
tpl = DocxTemplate('templates//inline_image_tpl.docx')
context = {
'myimage': InlineImage(tpl, 'templates//python_logo.png', width=Mm(20)),
'myimageratio': InlineImage(
tpl, 'templ
版权声明:
作者:lichengxin
链接:https://www.techfm.club/p/8535.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。
THE END
二维码
共有 0 条评论