Is there a way to save text from a dynamic text field into some kind of SVG format?
A:
That depends on what you want to do. SVG text is quite straight forward:
<svg xmlns="http://www.w3.org/2000/svg">
<text x="20" y="20" font-family="Arial">Hello World!</text>
</svg>
So you can fetch the text from the input field and just feed it into an SVG template.
Boldewyn
2010-02-16 21:54:15
Thanks, I'm going to read up on the documentation you linked to.
Johan
2010-02-18 09:21:09
You're welcome. I like the SVG specification really well. It's good written and both informative and easy to understand. Therefore I'd like to encourage you to read more of it.
Boldewyn
2010-02-18 09:26:13