How can I render contoured text like those in the images in Java? That is, the text has an outline with a background (which I already know how to do) and some texture around its outline.
Asked
Active
Viewed 44 times
0
-
1Maybe this will give you some ideas: https://stackoverflow.com/questions/6295084/cut-out-image-in-shape-of-text/6296381#6296381. It shows how to create an outline of some text. You should be able to first `fill(...)` the Shape with a given color and then `draw(...)` the Shape with an outline color. You won't need the clipping logic. – camickr Aug 09 '21 at 18:55
-
Thank you twice: the direction of making the contour based on the outline itself and for putting me in contact with very interesting and promising stuff! – Inteli9 Aug 10 '21 at 12:02