我一直在网上搜索使用pdfkit(python包装器)实现页眉和页脚的人的例子,但找不到任何例子。
有人能够使用pdfkit python包装器展示如何在wkhtmltopdf中实现选项的一些示例吗?
答案 0 :(得分:9)
我只在标题中使用它,但我认为它与页脚一样。
您需要为标题添加单独的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这样的后端并且想要使用模板,那么棘手的部分是您无法将标头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
结尾并手动删除。
答案 1 :(得分:1)
改善@V Stoykov答案,因为它帮助我使用 Flask , Flask 中自定义标题的渲染功能如下:
import os
import tempfile
import pdfkit
from flask import render_template, make_response
@app.route('/generate_pdf')
def render_pdf_custom_header(foo, bar):
main_content = render_template('main_pdf.html', foo=foo)
options = {
'--encoding': "utf-8"
}
add_pdf_header(options, bar)
add_pdf_footer(options)
try:
pdf = pdfkit.from_string(main_content, False, options=options)
finally:
os.remove(options['--header-html'])
os.remove(options['--footer-html'])
response = build_response(pdf)
return response
def add_pdf_header(options, bar):
with tempfile.NamedTemporaryFile(suffix='.html', delete=False) as header:
options['--header-html'] = header.name
header.write(
render_template('header.html', bar=bar).encode('utf-8')
)
return
def add_pdf_footer(options):
# same behaviour as add_pdf_header but without passing any variable
return
def build_response(pdf):
response = make_response(pdf)
response.headers['Content-Type'] = 'application/pdf'
filename = 'pdf-from-html.pdf'
response.headers['Content-Disposition'] = ('attachment; filename=' + filename)
return response
请注意,我使用了'--header-html'
和'--footer-html'
符号,因为它符合 wkhtmltopdf 选项格式。
答案 2 :(得分:1)
options = {
'page-size': 'Letter',
'margin-top': '0.9in',
'margin-right': '0.9in',
'margin-bottom': '0.9in',
'margin-left': '0.9in',
'encoding': "UTF-8",
'header-center': 'YOUR HEADER',
'custom-header' : [
('Accept-Encoding', 'gzip')
],
'no-outline':None
}
您可以在header-center
的值中添加所需的标题