我正在使用flask和pdfkit从如下的flask模板创建pdf。 pdf已成功生成,但使用的是Calibri而不是html模板中的Helvetica。如何指定pdfkit中使用的字体? 我当前的代码如下,其在Windows中运行。
pdfkit.from_string(render_template('my_template.html',
data=data),
output_file_path)