我正在使用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)