TextOnPath
The TextOnPath class represents an SVG text element that follows a path. It wraps a
Info
This class inherits from SvgElement
.
pydreamplet.core.TextOnPath
Initializes a new text-on-path element with optional initial content and a reference to a path.
Parameters
initial_text
(str, optional): The initial text content.path
(str, optional): The path identifier (e.g., an href value) to bind the text to.text_path_args
(dict, optional): Additional attributes for the<textPath>
element.**kwargs
: Additional attributes for the text element.
content
Getter:
Returns the text content rendered on the path.
Setter:
Updates the text content on the path.
Usage example
import pydreamplet as dp
svg = dp.SVG(100, 100)
svg.width = "600px"
svg.height = "600px"
path = dp.Path(
id="my-path",
d="M10,90 Q90,90 90,45 Q90,10 50,10 Q10,10 10,40 Q10,70 45,70 Q70,70 75,50",
fill="none",
stroke="#3e685e"
)
text = dp.TextOnPath(
"Lorem ipsum dolor sit amet.",
path_id="#my-path",
text_path_args={"startOffset": "20%"},
)
svg.append(path).append(text)
svg.display()