我正在尝试使用reportlab pisa显示中文字符。生成的中文单词会变成黑块。我正在使用UTF-8生成PDF
def render_to_pdf(template_src, context_dict):
"""Function to render html template into a pdf file"""
template = get_template(template_src)
context = Context(context_dict)
html = template.render(context)
result = StringIO.StringIO()
pdf = pisa.pisaDocument(StringIO.StringIO(html.encode("UTF-8")), result)
if not pdf.err:
return HttpResponse(result.getvalue(), mimetype='application/pdf')
return HttpResponse('We had some errors<pre>%s</pre>' % escape(html))
发布于 2011-12-25 13:29:09
这是一个字体问题,因为您需要显示的任何字体都不能被reportlabs嵌入到pdf中。
建议您查看reportlabs ftp server中是否有您需要的字体包。
https://stackoverflow.com/questions/8629521
复制相似问题