| Author |
What are all the typefaces available?
|
Thomas Knight
Ranch Hand
Joined: Feb 08, 2003
Posts: 33
|
|
What I am doing: Font f = new Font(typeface, style, size); My Problem: I am having a hard time finding all the type faces that Java will understand(ex: Serif, Helvetica ?). I only know a couple. Where do I find this information? All I need is a list of 7-10 typeface names if anybody knows them. Thanks.
|
 |
Michael Morris
Ranch Hand
Joined: Jan 30, 2002
Posts: 3451
|
|
Hi Thomas, Here is an excerpt from the API docs on Font: Logical fonts are the five font families defined by the Java platform which must be supported by any Java runtime environment: Serif, SansSerif, Monospaced, Dialog, and DialogInput. Here is a simple app to list all font families on a particular system: Michael Morris
|
Any intelligent fool can make things bigger, more complex, and more violent. It takes a touch of genius - and a lot of courage - to move in the opposite direction. - Ernst F. Schumacher
|
 |
Thomas Knight
Ranch Hand
Joined: Feb 08, 2003
Posts: 33
|
|
|
Thanks for the reply Michael. I had read something about the Graphics Environment thing. I forgot that I would need to check each persons system to see the kinds of fonts available. I think for my purposes I will use the font families that are supported on all Machines.
|
 |
 |
|
|
subject: What are all the typefaces available?
|
|
|