Does anyone know how to attach a text to a path in Raphaël? Something like http://www.w3.org/TR/SVG11/images/text/toap02.svg I know that jQuery SVG can do that, but I can't find an easy way to do this by using Raphaël js. I want to attacht this text to a bezier curve and move it.
|
There are 2 ways to do this.
Here's a quick and rough start for Method 1 with no rotation using
Try it out with this jsFiddleNote: The above code is very rough and has some important positioning problems, but I think the general approach is the way to go for putting text on a path with Raphael. |
||||
|
|
|
raphael 2.1 print() function do not return a set of path any more, but a single path with all the letters. So all solutions here are not valid for raphael 2.1 (current version). I developed the following small plugin that adds the method printLetters() to paper, that prints letters individually and return a set, just like the old print() method. Also, the plugin supports aligning this text to a path. For example, for aligning a text on a path using the plugin you only need to do this:
And the plugin code is:
|
|||
|
|
this is the code based on raphael4gwt (java), but I think a javascript programmer can easily adapt it. It is based on raphael 2.0. It is similar to the sollution above but better. It uses transformation strings to absolutely position and rotate each letter to place it on the path:
|
|||
|
|