How to draw an outline around text in AWT?

awt, java

Solution

two examples

Font and AffineTransform

Font, TextLayout and AffineTransform

output from this paint would be the `BufferedImage`, for AWT Components use method `paint()`, for Swing JComponents is there `paintComponet()`

Also, from code linked in a comment:

Problem

How can I draw an outline around any text in AWT, something similar to this picture?

Original source

Related problems