2
你好,我有這個代碼,它從我的res文件夾中的一個ttf文件創建一個字體。Java如何增加字體大小?
try {
font1 = Font.createFont(Font.TRUETYPE_FONT, new File("res/1942.ttf"));
font1.deriveFont(12f);
} catch (FontFormatException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
我想.deriveFont();
增加了自定義字體大小,但對我來說dosnt。哪裏不對? 這裏是使用字體的地方。
g.setColor(Color.blue);
font1.deriveFont(52);
g.setFont(font1);
g.drawString("hello",480, 250);