vote up 0 vote down star

This is what I need in my game regarding text:

Word Wrap Support given a bounding box
Vertical and Horizontal alignment given a bounding box

Now, I've been reading about how to use TextLayout, and it seems possible to write all this myself but I'd prefer to think at a higher level. I just want a Label class with a signature like this:

public Label(String text, Alignment alignment, VAlignment vAlignment);

Does anyone know of an open source (non-gpl) library out there that makes text formatting simple?

flag
Are you using custom paint() methods or Swing components? – kd304 Jun 13 at 20:57
I'm using java2d so I'm using custom paint() methods. – tieTYT Jun 14 at 8:04
I think most graphics programs have simply created their own text rendering. For maximum control, you can implement your own version using String.split(), FontMetrics etc. – kd304 Jun 14 at 11:35
This isn't flexible enough for me. My game has a chatroom – tieTYT Jun 15 at 6:36

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.