this package provides implementations of the WordToImage interface.
Main class is the AbstractWordToImage wich defines the strucure of the implementations provided.
ComposedWordToImage is the first concrete WordToImage. It is based on the Template method pattern in order to build an image from a word :
It uses three intefraces : located in subpackages
- Uses an FontGenerator to apply a font to a word
- Uses an BackgroundGenerator to retrieve a background image on which text will be pasted
- Uses an TextPaster to past the formated word on the background
See sub packages for implementations of interfaces.