作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经在我的应用程序中成功加载了 CSS 中的 .ttf 字体。当我尝试加载 .ttc 以获得国际语言支持时,我得到了这个
Jun 08, 2015 10:12:44 AM com.sun.javafx.css.StyleManager loadStylesheetUnPrivileged
INFO: Could not load @font-face font [file:/E:/DanIDE/out/production/DanIDE/font/tsentsiu-sans-mono-regular.ttc]
所以我的问题是如何在我的 JavaFX 元素中使用 .ttc?非常感谢!
编辑:在我的 CSS 中,我加载了这样的字体:
@font-face {
font-family: 'Tsentsiu Sans Mono HC';
src: url('/font/tsentsiu-sans-mono-regular.ttc');
}
@font-face {
font-family: 'Tsentsiu Sans Mono HC Bold';
src: url('/font/tsentsiu-sans-mono-bold.ttc');
}
.code {
-fx-font-family: "Tsentsiu Sans Mono HC";
-fx-fill: green;
}
.variable {
-fx-font-family: 'Tsentsiu Sans Mono HC Bold';
-fx-fill: red;
}
RichTextFX
元素为我加载了 CSS。
最佳答案
从评论中复制粘贴解决方案:
在显示之前,您必须在代码中至少加载一次字体。事件如果你在 css 中使用它。只需将负载线放在开头的某个位置,它就可以工作。
Font.loadFont(getClass().getResourceAsStream("/tsentsiu-sans-mono-regular.ttc"), 20);
关于css - 如何在 JavaFX 中使用 True Type Collection (.ttc)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30700479/
我是一名优秀的程序员,十分优秀!