我试图在我的Rails应用程序中使用PDFKit从html生成的pdf中使用自定义字体.我在... app/assets/fonts /中添加了字体,并将其包含在我的html模板中:
css:
@font-face {
font-family: 'journal';
src: url(file://#{Rails.root.join('app', 'assets', 'fonts', 'journal.eot')});
src: url(file://#{Rails.root.join('app', 'assets', 'fonts', 'journal.woff')} format("woff")),
url(file://#{Rails.root.join('app', 'assets', 'fonts', 'journal.ttf')}) format("truetype");
}
Run Code Online (Sandbox Code Playgroud)
在css中称它为:
h1 {font-family: journal; }
Run Code Online (Sandbox Code Playgroud)