I am trying to use custom fonts in my PDF generated with wkhtmltopdf.
I read that you can't use google webfonts and that wkhtmltopdf uses truetype .ttf file. Can anyone confirm that?
So I downloaded a .ttf file from google webfont and put in on my server, then used the font face:
@font-face {
font-family: Jolly;
src: url('../fonts/JollyLodger-Regular.ttf') format('truetype');
}
and font family:
<style type = "text/css">
p { font-family: 'Jolly', cursive; }
</style>
And now the text that is supposed to render with Jolly Lodger font doesn't appear at all, page is blank.
What am I doing wrong?
PS: I tried with different .ttf files.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…