Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
It will be added at some point in the future as it is part of SVG image handling, but currently actually drawing text on a curved path is not directly posible with IM.
The IM Examples have some good examples on distortion maps, and I have been planing an example in wrapping an image around a circle, but never got back to it.
convert -size 250x80 xc:white -font Verdana -pointsize 18 -annotate +25+65 "Text on a Curved Path" -wave -60x500 -crop x110+0+10 test.jpg
It works somewhat... but I want the text to not be distorted/skewed. Just placed on a path, and also the command would have to be adjusted for each font, size, and string length which will all be dynamic.