jinja2和weasyprint的图像路径

时间:2018-08-30 23:11:23

标签: python jinja2 weasyprint

我的代码使用weasyprint将jinja2模板转换为PDF。 一切正常,除了我无法使图像显示在PDF中。

我的文件结构:

dist
src
    img
        image.png
    templates
        statement.html.j2
build.py

“ build.py”

import jinja2
import json
import os
import weasyprint
from weasyprint.fonts import FontConfiguration


def main():
    if not os.path.exists('dist'):
        os.makedirs('dist')
    jinja_env = jinja2.Environment(
            loader = jinja2.FileSystemLoader('src/templates')
        )
    css_dir = 'src/css'
    html_tpl = jinja_env.get_template('statement.html.j2')
    with open('sample/json/statement.json', 'r') as f:
        statement = json.load(f)
    statement = statement['statement']
    font_config = FontConfiguration()
    html = html_tpl.render(statement=statement)
    css_files = [weasyprint.CSS(os.path.join(css_dir, filename))
        for filename in os.listdir(css_dir)]
    rendered_html = weasyprint.HTML(
        string=html
    )
    rendered_html.write_pdf(
        'dist/statement.pdf',
        stylesheets=css_files,
        font_config=font_config
    )

if __name__ == '__main__':
    main()

“ statement.html.j2”

<img class="img-responsive" src="../img/image.png">

图像路径是否正确? 如何引用模板中的图像? 那路是什么? 还是该问题与图片参考无关?

0 个答案:

没有答案