Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. private static Font getFont() {
  2. Font font = null;
  3.  
  4. try {
  5. File fontFile = new File("/home/lightsoft/bonprix/hk-grotesk/HKGrotesk-Bold.otf");
  6. font = Font.createFont(Font.TRUETYPE_FONT, fontFile);
  7. GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
  8.  
  9. ge.registerFont(font);
  10. }
  11. catch (Exception ex) {
  12. }
  13. return font;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement