Java-Gaming.org
Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
Featured games (78)
games approved by the League of Dukes
Games in Showcase (406)
games submitted by our members
Games in WIP (293)
games currently in development
News: Read the Java Gaming Resources, or peek at the official Java tutorials
 
    Home     Help   Search   Login   Register   
Pages: [1]
  ignore  |  Print  
  True Type Font problem  (Read 1503 times)
0 Members and 1 Guest are viewing this topic.
Offline Z-Man

Senior Member


Medals: 9



« Posted 2011-05-15 21:18:05 »

Hi, I'm trying to import a true type font (.ttf) into my Java game. I found a method of doing this on the internet but when I load the font and then display some text using it the text is really small, or maybe it's not displaying right it's kind of hard to tell. I also tried deriving a new font from the original with a different size but that didn't work (using font.deriveFont(Float size)). Anyway this is where I got my method from http://www.java2s.com/Code/Java/2D-Graphics-GUI/Loadfontfromttffile.htm and this is the important part of the code:
[CODE]
try {
      InputStream is = DemoFonts.class.getResourceAsStream(fName);
      font = Font.createFont(Font.TRUETYPE_FONT, is);
    } catch (Exception ex) {
      ex.printStackTrace();
      System.err.println(fName + " not loaded.  Using serif font.");
      font = new Font("serif", Font.PLAIN, 24);
    }
[/CODE]
Offline ra4king

JGO Kernel


Medals: 264
Projects: 2


I'm the King!


« Reply #1 - Posted 2011-05-16 03:49:07 »

As the Java API for the java.awt.Font.createFont(int,InputStream) says, it creates the font with a point size of 1. You need to call Font.deriveFont(int) to specify a larger point size. That should work.
1  
2  
3  
4  
5  
6  
7  
8  
try{
      InputStream is = DemoFonts.class.getResourceAsStream(fName);
      return Font.createFont(Font.TRUETYPE_FONT, is).deriveFont(24);
} catch (Exception ex) {
      ex.printStackTrace();
      System.err.println(fName + " not loaded.  Using serif font.");
      return new Font("Serif", Font.PLAIN, 24);
}

Offline Z-Man

Senior Member


Medals: 9



« Reply #2 - Posted 2011-05-20 01:38:54 »

Thanks for the reply. I tried that but it still gave me a font with the size of 1. I also tried a couple different fonts to make sure that it wasn't a problem with the font I'm trying to use and I got the same problem with all of them. I'm not sure why but using this works instead of just sending it the size. Thanks for sending me in the right direction, I found this method while looking at the link you gave me.
[CODE]
deriveFont(Font.PLAIN,24);
[/CODE]
Games published by our own members! Check 'em out!
Legends of Yore - The Casual Retro Roguelike
Offline ra4king

JGO Kernel


Medals: 264
Projects: 2


I'm the King!


« Reply #3 - Posted 2011-05-20 03:03:08 »

Glad to have helped in some way Cheesy

Offline Captain Awesome

Junior Member


Medals: 2


Hi


« Reply #4 - Posted 2011-05-21 12:17:04 »

1  
return Font.createFont(Font.TRUETYPE_FONT, is).deriveFont(24);


The reason to why that line doesn't work is because you are calling Font.deriveFont(int style); instead of Font.deriveFont(float size);

You have to append an f to the parameter (to make it 24f instead of just 24) in order to call the right method.
Offline Nate

JGO Wizard


Medals: 81
Projects: 3


Esoteric Software


« Reply #5 - Posted 2011-05-21 12:21:11 »

java.awt.Font has some of the finest Sun API designs ever. Smiley

Offline ra4king

JGO Kernel


Medals: 264
Projects: 2


I'm the King!


« Reply #6 - Posted 2011-05-21 20:10:47 »

1  
return Font.createFont(Font.TRUETYPE_FONT, is).deriveFont(24);


The reason to why that line doesn't work is because you are calling Font.deriveFont(int style); instead of Font.deriveFont(float size);

You have to append an f to the parameter (to make it 24f instead of just 24) in order to call the right method.
Wow I can't believe I overlooked that! Hehe Tongue

java.awt.Font has some of the finest Sun API designs ever. Smiley
Really or are you being sarcastic? Smiley

Pages: [1]
  ignore  |  Print  
 
 
You cannot reply to this message, because it is very, very old.

Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
 
Get high quality music tracks for your game!

Add your game by posting it in the WIP section,
or publish it in Showcase.

The first screenshot will be displayed as a thumbnail.

The invasion has landed! On Mars! And you're there to beat 'em!
cubemaster21 (73 views)
2013-05-17 21:29:12

alaslipknot (85 views)
2013-05-16 21:24:48

gouessej (114 views)
2013-05-16 00:53:38

gouessej (109 views)
2013-05-16 00:17:58

theagentd (119 views)
2013-05-15 15:01:13

theagentd (108 views)
2013-05-15 15:00:54

StreetDoggy (153 views)
2013-05-14 15:56:26

kutucuk (176 views)
2013-05-12 17:10:36

kutucuk (173 views)
2013-05-12 15:36:09

UnluckyDevil (182 views)
2013-05-12 05:09:57
Complex number cookbook
by Roquen
2013-04-24 12:47:31

2D Dynamic Lighting
by Oskuro
2013-04-17 16:46:12

2D Dynamic Lighting
by Oskuro
2013-04-17 16:45:57

2D Dynamic Lighting
by Oskuro
2013-04-17 16:23:20

Noise (bandpassed white)
by Roquen
2013-04-05 17:36:01

Noise (bandpassed white)
by Roquen
2013-04-03 16:17:38

Java Data structures
by Roquen
2013-03-29 13:21:12

Topic Request
by kutucuk
2013-03-22 21:42:01
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines | Managed by Enhanced Four Valid XHTML 1.0! Valid CSS!
Page created in 0.131 seconds with 20 queries.