1

我正在尝试在 JFrame 中嵌入 ttf 字体。当然,我在各种线程中搜索了很多。我尝试了以下代码段:

InputStream is = getClass().getResourceAsStream("abc.ttf");
Font myFont = Font.createFont(Font.TRUETYPE_FONT, is);
Font abcFont = myFont.deriveFont(Font.TRUETYPE_FONT,40);

在第二行 ( Font myFont = ...) 中,eclipse 显示以下错误:

Multiple markers at this line:
-unhandled exception type IOException
-unhandled exception type FontFormatException

希望你知道一个解决方案!非常感谢!

4

1 回答 1

0

如果要将大小设置为 40,则必须设置40F 。

于 2014-01-22T12:54:54.217 回答