大家好
我使用wkhtmltopdf碰到了字型没有被加载的问题
把问题简化了一下
网页使用了自订字型,CSS如下:
@font-face {
font-family: 'custom';
src: url(customFont.TTF) format("truetype");
font-weight: normal;
font-style: normal;
}
h2 {
line-height: 18px;
margin-top:5px;
margin-bottom:5px;
font-family: 'custom';
}
body内只有一行
<h2>这是标题</h2>
网页编码是BIG5(原本想弄UTF8但该字库是拿来扩充BIG5字集的只好配合)
写在<head>标签中:<meta charset="BIG5">
这网页直接用chrome开,可以看到字型变化
但是使用wkhtmltopdf转换后,却仍是新细明体
卡好久了,请问wkhtmltopdf要使用自订字型是否有什么特殊的注意事项呢?
谢谢各位