我已经在我的应用程序中成功加载了 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。