PDFKitとカスタムフォントでPDFを印刷する方法はありますか?
cssには次のものがあります:
@font-face {
font-family: 'ChaparralProRegular';
src: url("path_to_font/chaparralpro-regular-webfont.eot");
src: url("path_to_font/chaparralpro-regular-webfont.eot?#iefix") format("embedded-opentype"),
url("path_to_font/chaparralpro-regular-webfont.woff") format("woff"),
url("path_to_font/chaparralpro-regular-webfont.ttf") format("truetype"),
url("path_to_font/chaparralpro-regular-webfont.svg#ChaparralProRegular") format("svg");
上記のコードは、html としてレンダリングすると正常に動作しますが、PDFKit を使用して PDF に出力すると標準フォントが使用されます。手がかりはありますか?