gpt4 book ai didi

python - pdfkit 页眉和页脚

转载 作者:行者123 更新时间:2023-11-28 19:39:13 27 4
gpt4 key购买 nike

我一直在网上搜索使用 pdfkit(python 包装器)实现页眉和页脚的示例,但找不到任何示例。
谁能展示一些如何使用 pdfkit python 包装器在 wkhtmltopdf 中实现选项的示例?

最佳答案

我只将它用于页眉,但我认为它与页脚的效果相同。

您需要为页眉创建单独的 html 文件。

header.html

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
</head>
<body>

Code of your header goes here.

</body>
</html>

然后你就可以像在Python中那样使用它了

import pdfkit

pdfkit.from_file('path/to/your/file.html', 'out.pdf', {
'--header-html': 'path/to/header.html'
})

如果您使用像 Django 这样的后端并且想使用模板,那么棘手的部分是您不能将 header html 作为呈现的字符串传递。您需要有一个文件。

这就是我用 Django 渲染 PDF 所做的。

import os
import tempfile
import pdfkit

from django.template.loader import render_to_string


def render_pdf(template, context, output, header_template=None):
"""
Simple function for easy printing of pdfs from django templates

Header template can also be set
"""
html = render_to_string(template, context)
options = {
'--load-error-handling': 'skip',
}
try:
if header_template:
with tempfile.NamedTemporaryFile(suffix='.html', delete=False) as header_html:
options['header-html'] = header_html.name
header_html.write(render_to_string(header_template, context).encode('utf-8'))

return pdfkit.from_string(html, output, options=options)
finally:
# Ensure temporary file is deleted after finishing work
if header_template:
os.remove(options['header-html'])

在我的示例中,我创建了一个临时文件,用于放置呈现的内容。重要的是临时文件需要以.html结尾,需要手动删除。

关于python - pdfkit 页眉和页脚,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34274637/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com