“wie man Schriftart in Java lädt” Code-Antworten

wie man Schriftart in Java lädt

try {
  
    Font font = Font.createFont(Font.TRUETYPE_FONT,
                                new File("./Fonts/AyyBoyyy.ttf"));
    Font bold = font.deriveFont(Font.BOLD, 12);
	Font plain = font.deriveFont(Font.PLAIN, 12);
  
} catch (FontFormatException | IOException e) {
  e.printStackTrace();
}
Snaith The He He Boy

Verwenden Sie benutzerdefinierte Schriftart Java

try {
     GraphicsEnvironment ge = 
         GraphicsEnvironment.getLocalGraphicsEnvironment();
     ge.registerFont(Font.createFont(Font.TRUETYPE_FONT, new File("A.ttf")));
} catch (IOException|FontFormatException e) {
     //Handle exception
}
Blue-eyed Bear

Ähnliche Antworten wie “wie man Schriftart in Java lädt”

Fragen ähnlich wie “wie man Schriftart in Java lädt”

Weitere verwandte Antworten zu “wie man Schriftart in Java lädt” auf Java

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen