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);

2 行目 ( 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 に答える