如何从jar中加载和使用ttf字体

How to load and use ttf font from jar

正在尝试写 class:

private void gameLevel(Graphics g) {
  try {
     InputStream fnt_stream = getClass().getResourceAsStream("resources/iomanoid.ttf");
     Font myFont = Font.createFont(Font.TRUETYPE_FONT, fnt_stream);
     Font Iomanoid = new Font("Iomanoid", Font.BOLD, 40);

     String msg = "Level";
     g.setColor(Color.black);
     g.setFont(Iomanoid);
     g.drawString(msg, 111,111);
  } catch (Exception ex) {
     System.out.println(ex);
  }

消息出现,但未使用指定的字体。

您必须在 GraphicsEnvironment 中注册新创建的字体。像这样

try {
     GraphicsEnvironment ge =  GraphicsEnvironment.getLocalGraphicsEnvironment();
     ge.registerFont(Font.createFont(Font.TRUETYPE_FONT, new File("path/to/your/font/sampleFont.ttf"));
} catch (IOException|FontFormatException e) {
     //Handle exception
}

看看here

除其他评论外

替换

Font Iomanoid = new Font("Iomanoid", Font.BOLD, 40);

来自

Font iomanoid = myFont.deriveFont(Font.BOLD, 40f);

此字体之后需要注册(如 mushfek0001 所述)

有关字体的更多信息,请查看有关 Physical and Logical Fonts

的 Oracle 教程