使用python pdfkit生成的pdf文件没有可点击的链接?

时间:2015-07-17 18:46:57

标签: html pdfkit html-to-pdf

html文件看起来像

        <div class="contact">
            Phone: +00-0000000<br/>
            E-mail: <a href="mailto:zsameem@gmail.com" >zsameem@gmail.com</a>
            Github: <a href="https://www.github.com/zsameem">www.github.com/zsameem</a>
        </div>  
    </div>  

gennerating pdf的代码很简单:

import pdfkit
pdfkit.from_file('mypage.html', 'mypdf.pdf;')

1 个答案:

答案 0 :(得分:0)

您是否按照安装说明中的说明安装了wkhtmltopdf? documentation

这似乎是使用pdfkit时经常遗漏的一点。