我有一个 Django 项目,我在其中使用 PDFkit 从 HTML 生成 PDF。
在我的本地机器上,我可以看到 pdf,但在生产机器上生成的 pdf 页面要大一些。
两台机器上的 html 都是正确且相同的。
操作系统是相同的(ubuntu 14.04)。
检查了所有软件包版本,它们是相同的。
我的pdf生成代码是:
options = {'page-size': 'A2', 'margin-top': '0in', 'margin-right': '0in', 'margin-bottom': '0in', 'margin-left': '0in'}
pdf_location = '/...../executive_summary.pdf'
pdfkit.from_string(my_template.render(context_dict), pdf_location, options=options, css='/....../executive_summary.css')
wkhtmltopdf 是最新的
pdfkit==0.6.1
附上截图。还有哪里可能是问题?