我正在尝试使用pdfkit python 库将 HTML 文件转换为 pdf。我按照这里的文档。
目前,我正在尝试将纯文本转换为 PDF 而不是整个 html 文档。一切正常,但我在生成的 PDF 中看到的不是文本,而是框。这是我的代码。
import pdfkit
config = pdfkit.configuration(wkhtmltopdf='/usr/local/bin/wkhtmltopdf/wkhtmltox/bin/wkhtmltopdf')
content = 'This is a paragraph which I am trying to convert to pdf.'
pdfkit.from_string(content,'test.pdf',configuration=config)
这是输出。
而不是文本“这是我正在尝试转换为 pdf 的段落。” ,转换后的 PDF 包含框。
任何帮助表示赞赏。谢谢 :)