为什么在wkhtmltopdf中忽略dpi?

时间:2017-05-04 13:04:33

标签: html css pdf wkhtmltopdf

为什么在以下情况下会忽略--dpi参数?

如果重要的话,我正在使用wkhtmltopdf 0.12.2.1(带有补丁的qt)。

我发现了这个相关问题,但很惊讶这个问题在几年后仍会存在: https://github.com/wkhtmltopdf/wkhtmltopdf/issues/2579

temp.html内容:

<html>
    <head>
            <style>
                    h1 {
                            font-size: 60px;
                            border-bottom: 2px solid black;
                    }
            </style>
    </head>
    <body>
            <h1>Hello World</h1>

    </body>
</html>

- 即使我指定了--disable-smart-shrinking,dpi也会被忽略。 cat temp.html | wkhtmltopdf --debug-javascript --margin-top 0 --margin-left 0 --margin-right 0 --dpi 300 - test_100.pdf enter image description here

cat temp.html | wkhtmltopdf --debug-javascript --margin-top 0 --margin-left 0 --margin-right 0 --dpi 100 - test_300.pdf enter image description here

0 个答案:

没有答案