我正在尝试在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
希望你知道解决方案! 非常感谢!
答案 0 :(得分:0)
如果您希望将尺寸设置为40,则必须设置 40F 。