有没有办法用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 时使用标准字体。
有什么线索吗?
最佳答案
我猜你的 pdfkit 只是找不到你的字体文件在哪里。我对 pdf 中的图像有同样的问题。
尝试用本地文件路径替换字体文件的所有 url:
url("#{Rails.root}/path_to_font/chaparralpro-regular-webfont.eot");
关于ruby-on-rails - PDFKIT 自定义字体,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11154443/