将html页面转换为python中的单个pdf文档

时间:2019-05-27 06:36:25

标签: python-3.x python-pdfkit

我正在使用pdfkit Python库将html页面转换为pdf。 问题是我获得了多页pdf,而我希望将所有内容都放在一个页面上(不考虑html页面的长度)。如何强制pdfkit缩小/缩放网页以适合单个页面?

Html_file = open("temp.html", "w")
Html_file.write(temp)
Html_file.close()
options = {
    'page-size': 'Legal',
}
pdfkit.from_file('temp.html', 'temp.pdf', options=options)

0 个答案:

没有答案