我正在使用wkhtmltopdf生成的PDF中的自定义字体。
我读到你不能使用google webfonts,而wkhtmltopdf使用truetype .ttf文件。有人可以确认吗?
所以我从google webfont下载了一个.ttf文件,放在我的服务器上,然后使用了这个字体:
我读到你不能使用google webfonts,而wkhtmltopdf使用truetype .ttf文件。有人可以确认吗?
所以我从google webfont下载了一个.ttf文件,放在我的服务器上,然后使用了这个字体:
@font-face { font-family: Jolly; src: url('../fonts/JollyLodger-Regular.ttf') format('truetype'); }
和字体系列:
<style type = "text/css"> p { font-family: 'Jolly',cursive; } </style>
现在,应该使用Jolly Lodger字体呈现的文本根本不显示,页面是空白的。
我究竟做错了什么?
PS:我尝试使用不同的.ttf文件。
解决方法
由于它是Google Web字体,您不必在您的样式表中写入@ font-face,只需在源代码中使用以下链接标记:
<link href='http://fonts.googleapis.com/css?family=Jolly+Lodger' rel='stylesheet' type='text/css'>
和
<style type = "text/css"> p { font-family: 'Jolly Lodger',cursive; } </style>
将工作。
顺便说一句,在你的代码中,你将@ font-face family定义为font-family:Jolly;并将其用作p {font-family:“Jolly Lodger”,草书; }这是错误的,因为它是不匹配的字体家族名称。