6

我在下面重现了我的问题:

  1. 我在网页上画了一个 210x297 的矩形

    <!DOCTYPE html>
    <html>
    <style>
    div.rectangle {
      border: solid 1px;
      width: 210mm;
      height: 297mm;
    }
    </style>
    <head>
    </head> 
    <body> 
    <div class="rectangle">
      <img/>
    </div>
    </body>
    </html>
    
  2. 我在 Python 中使用 pdfkit 将此 html 文档转换为 pdf

    import pdfkit
    
    options = {
        'page-size':'A4',
        'encoding':'utf-8', 
        'margin-top':'0cm',
        'margin-bottom':'0cm',
        'margin-left':'0cm',
        'margin-right':'0cm'
    }
    
    pdfkit.from_file('test.html', 'test.pdf', options=options)
    
  3. 我获得了一个 pdf 文件,其左上角有一个矩形,其大小大约小了 5 倍......

如果你能看看,我将不胜感激!

4

2 回答 2

5

对我来说,手动设置 DPI 是一种解决方法:

options={'page-size':'A4', 'dpi':400}
于 2017-05-26T18:43:23.687 回答
3

您可以尝试通过以下选项禁用收缩

options = { 'disable-smart-shrinking': ''}
于 2019-05-21T07:28:53.297 回答