I want to write a python program that converts given text into an image. There are tutorials for it online, but I want to curve the text over a circle.
Let's say I have the text "YOUR CURVED TEXT".
I want to draw this on an image and end up with something like following:
I checked Pillow and OpenCV. I might be making a mistake but I don't think they have any functionality for curving the given text?
What would be the best way to do this?
Thanks in advance.