What would be the easiest way to make plain text on a swing component have a glowing effect in the background?
Example: From ->
The difference may not be that noticeable but there's definitely a glow in the second image. Thanks in advance. And by the way I couldn't find any answers for this question in java.
The easiest way is probably to draw the text on top of a blurred version of itself. The blurred version will provide the "glow" around the edges.
You will probably need to experiment with the right amount of blur and level of transparency when drawing the blurred version to get the right effect.
For blurring techniques see: How do I blur an image?