It seems the text is not on the path within Inkscape. (It appears to be on the path in a browser.)
This was actually extremely helpful! I actually installed the GUI and you were right! So, I fixed it in the GUI, saved as SVG, and started paring it down until I figured out what was going on.
The solution is:Β <textPath xlink:href="#signaturePath" startOffset="15%">, xlink:href, not just href. It works!!
Hoping someone can point me in the right direction, or confirm this isn't possible.
Given this SVG (which renders as text-on-path, meaning the text's baseline is the defined path):
I'd like to, using the command-line convert the text to paths:
inkscape --export-plain-svg=converted.svg --export-text-to-path curveText.svg
Unfortunately, while this does convert the text to paths, it does not keep the text placed ON the path; it just outputs paths in a straight line.
Is the desired result achievable? If it matters, I'm usingΒ Inkscape 0.92.2 (5c3e80d, 2017-08-06) on an Amazon EC2 instance.
It seems the text is not on the path within Inkscape. (It appears to be on the path in a browser.)
This was actually extremely helpful! I actually installed the GUI and you were right! So, I fixed it in the GUI, saved as SVG, and started paring it down until I figured out what was going on.
The solution is:Β
<textPath xlink:href="#signaturePath" startOffset="15%">
,xlink:href
, not justhref
. It works!!Thank you so so much!!