Advertisement
Guest User

Untitled

a guest
Dec 16th, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. public class FontLoader {
  2.  
  3. public static Font loadFont(String path, float size){
  4. try {
  5. return Font.createFont(Font.TRUETYPE_FONT, new File(path)).deriveFont(Font.PLAIN, size);
  6. } catch (FontFormatException | IOException e) {
  7. e.printStackTrace();
  8. System.exit(1);
  9. }
  10. return null;
  11. }
  12.  
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement