wkhtmltopdf footer-html encoding utf-8

前端之家收集整理的这篇文章主要介绍了wkhtmltopdf footer-html encoding utf-8前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
wkhtmltopdf –encoding utf-8不适用于–footer-html。

我正在使用以下命令。两个html文件也是utf8格式。

wkhtmltopdf –dpi 120 -O Portrait –encoding’utf-8′–footer-html /tmp/testFooter.html /tmp/testMain.html /tmp/testPDF.pdf

这两个文件都有法文字符。但在pdf页脚有坏字符。

<html>
     <head>
        <title></title>
     </head>
    <body>
    <div style="width:95%;font-size:9pt;font-family:Arial;">
    <div style="border-top: 1px solid black;width: 100%;text-align: center;">
    test - Guérin 691BANNE - FRANCE - SA au capital 0 Euros -737 729 - Téléphone :  86 03</div></div>
    </body>
</html>

输出以下图像

解决方法

尝试在页脚的HTML头元素中添加以下行:
<Meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
原文链接:https://www.f2er.com/html/232768.html

猜你在找的HTML相关文章