How to check in Java if a string isn't drawn over another string?

116 Views Asked by At

I am drawing some strings on a JPanel, but I dont want to these string to be drawn over each other.

How can I check if there is a string on a point on my panel?

Thanks!

1

There are 1 best solutions below

3
On

You need keep track on all strings and their positions, and then use java.awt.FontMetrics to calculate a bounding box of your strings. Then all you have to do is to check the bounding boxes for intersection.