为什么cfhtmltopdf不显示googleapis字体?
<cfhtmltopdf encryption = "AES_128">
<html>
<head>
<!--Add GoogleFonts-->
<link href="https://fonts.googleapis.com/css?family=Aguafina+Script|Alex+Brush|Bilbo|Condiment|Great+Vibes|Herr+Von+Muellerhoff|Kristi|Meddon|Monsieur+La+Doulaise|Norican|Nothing+You+Could+Do|Parisienne|Permanent+Marker|Sacramento|Yellowtail" rel="stylesheet">
</head>
<body>
<p id="displaySignature" style="font-family: Meddon, cursive; font-size: 30px;">Test</p>
</body>
</html>
</cfhtmltopdf>
它忽略字体样式。
答案 0 :(得分:1)
您可以转到ColdFusion管理员->服务器设置->字体管理,然后导入您需要的字体并尝试。
答案 1 :(得分:0)
如果您查看this answer,请使用
@import url('https://fonts.googleapis.com/css?family=Open+Sans');
会将CSS文件的内容导入HTML。实际上,使用@import
将“延迟加载包含的资源,直到提取文件为止”,这可能正是您所需要的。