0

我正在尝试使用 grails 中的渲染插件将我的 gsp 页面下载为 pdf。我想在 pdf 中导入我自己的字体。我正在使用 css 来导入字体。

@font-face {
    src: url('Philosopher.otf');
    -fs-pdf-font-embed: embed;
    -fs-pdf-font-encoding: cp1250;
    font-family: philosopher;
}
body {
        font-family: "Philosopher";
    }

我在印刷媒体上写它。当我打开它浏览器它工作正常。但是当我尝试下载 pdf 时,我的字体没有显示在 pdf 中。pdf 显示它的默认字体。除了css之外,还有其他方法可以在pdf中显示我的字体,因为字体的css对我不起作用。

4

1 回答 1

2

我遇到了同样的问题,我通过在 css 链接中使用绝对 url 解决了:

<link rel="stylesheet" type="text/css" href="${grailsApplication.config.grails.serverURL}/css/pdf.css" media="all" />

我还从资源插件中排除了 CSS 和所有使用的资源:

grails.resources.adhoc.excludes = ['/css/pdf.css','/images/background.png', '/css/SectionUnicode.ttf']
于 2013-06-06T09:39:52.957 回答