我正在使用Flask在python 2.7中试用PyFPDF库。我通过pip安装了pyFPDF。但是,它没有返回pdf,而是仅返回了空白页。我没有收到任何错误。我是否缺少字体?我只是想使用Arial。这是我的代码:
@pdf.route('/pdf/<int:id>/pdf')
def pdf(id):
id = str(id)
pdf = FPDF()
pdf.add_page()
pdf.set_xy(0, 0)
pdf.set_font('arial', 'B', 13.0)
pdf.cell(ln=0, h=5.0, align='L', w=0, txt="Hello" + id, border=0)
return pdf.output('test.pdf', 'F')
这是模板中的链接,用于触发PDF下载;
<a href="{{ url_for('pdf.pdf', id=id) }}" class='btn pull-right margin-bottom'>
<i class="material-icons">picture_as_pdf</i> Export PDF
</a>
上面的代码返回空白页。