SVG Source Code zum Textpath Beispiel
<?xml version="1.0"
standalone="no"?>
<!DOCTYPE svg PUBLIC
"-//W3C//DTD SVG 20001102//EN"
"http://www.w3.org/TR/2000/CR-SVG-20001102/DTD/svg-20001102.dtd">
<svg width="10cm"
height="3cm" viewBox="0 0 1000 300">
<defs>
<path id="MyPath"
d="M 100 200 C 200 100 300 0 400
100
C 500 200 600 300 700 200 C 800 100
900 100 900 100" />
</defs>
<desc>Hello
World</desc>
<use
xlink:href="#MyPath" style="fill:none;
stroke:red" />
<text
style="font-family:Verdana; font-size:60;
fill:blue">
<textPath
xlink:href="#MyPath">
Hello Scalable Vector Graphics
</textPath>
</text>
</svg>