Click here to Skip to main content
Licence CPOL
First Posted 27 Oct 2008
Views 28,943
Downloads 328
Bookmarked 33 times

Text on A Path for Silverlight

By lneir | 27 Oct 2008
Displays a text string along a path defined by a given geometry.

1

2

3
1 vote, 16.7%
4
5 votes, 83.3%
5
4.83/5 - 6 votes
μ 4.83, σa 0.93 [?]

Introduction

Currently, with Silverlight, there is no built-in capability to display a text string that will follow the path of a given geometry (see picture below). Similarly, Windows Presentation Foundation does not have such a capability either, but WPF does provides a number of helper methods (e.g., path flattening) that provide a good start. I wrote an article a while ago that provides text on a path for WPF. The article here takes the text on a path class written for WPF and makes it available for Silverlight.

Ellipse.JPG

Background

To display text on a path, the fundamental problem that must be solved is to figure out how to translate and rotate each character of the string to fit the specified geometry. A big help in solving the problem is the WPF method GetFlattenedPathGeometry() provided by the Geometry base class. This method returns a PathGeometry that approximates the geometry by a series of lines (PolyLineSegment and LineSegment). For example, the red lines below depict the flattened path of the path geometry (black):

flattenedpath.PNG

Currently, Silverlight 2 has no such path flattening method! Charles Petzold developed a path flatting method in his article and gave permission to reuse the code. The code is included here in the ‘PathGeometryHelper’ project. Charles’ method was written for WPF, and so it needed to be ported to Silverlight. In porting this code to Silverlight, more missing functionality was found. Namely, Silverlight lacks some methods in the Matrix class. Also, Silverlight has no Vector class. Equivalent functionality for these classes (and a few others) has been provided in the ‘MatrixMathHelpers’ project.

The next step in the problem is to take the flattened path geometry and figure out how to transform the characters of the string to follow the flattened path. The figure below depicts the angle that must be calculated so the letter “A” will follow the flattened path. In TextOnAPath, the method ‘GetIntersectionPoints’ in the GeometryHelper class calculates the points along the flattened path where the characters intersect with the path. Knowing the intersection points, the angle (and translation) values can then be calculated.

flattenedpathWithText.PNG

Using the code

In the attached solution, there are two projects for the TextOnAPath control, one for Silverlight (TextOnAPathSilverlight) and another for WPF (TextOnAPathWPF). The source code in the Silverlight version is linked over to the WPF version. In this way, both versions of the control share a common code base. The compiler directive ‘#if SILVERLIGHT’ is used to denote code differences. Notice that the XAML is not linked between the two controls because currently there is no equivalent for the ‘#if’ compiler directive in XAML.

The Silverlight version of the TextOnAPath, like the WPF version, is used just like any normal UIElement. The XAML below will display the text string along the curved path centered in a grid. Notice how the path is defined using the mini-language by the ‘MyPath’ string variable (for more info on path mini-language, see this article). Currently, Silverlight has no built-in functionality to convert this mini-language string into a PathGeometry, but thankfully, a converter has been provided in this article. The code is included here in the ‘PathConverter’ project. Using a binding converter, the TextPath attribute is able to get the desired PathGeometry value from the String value.

<UserControl x:Class="TextOnAPathTestAppSilverlight.PageTest"
   xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
   xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
   xmlns:core="clr-namespace:System;assembly=mscorlib"
   xmlns:PathConverter="clr-namespace:PathConverter;
       assembly=PathConverter"
   xmlns:TextOnAPath="clr-namespace:TextOnAPath;
       assembly=TextOnAPathSilverlight"
   Width="500" Height="500">

 <Grid>
   <Grid.Resources>

     <core:String x:Key="MyPath">M0,0 C120,361 230.5,276.5 
230.5,276.5 L308.5,237.50001 C308.5,237.50001 419.5,179.5002 
367.5,265.49993 315.5,351.49966 238.50028,399.49924 
238.50028,399.49924 L61.500017,420.49911</core:String>

     <PathConverter:StringToPathGeometryConverter 
         x:Key="MyPathConverter"/>

   </Grid.Resources>

   <TextOnAPath:TextOnAPath TextPath="{Binding 
     Source={StaticResource MyPath}, 
     Converter={StaticResource MyPathConverter}}" 
     FontSize="25" DrawLinePath="True" 
     Text="The quick brown fox jumped over the lazy dog."/>
 
 </Grid>

</UserControl>

ExampleWindow2.JPG

Parameters of the TextOnAPath control:

  • Text (string): the string to be displayed. If the Text string is longer than the geometry path, then text will be truncated.
  • TextPath (Geometry): the geometry for the text to follow.
  • DrawPath (Boolean) (only in WPF version): if true, draws the geometry below the text string.
  • DrawLinePath (Boolean): if true, draws the flattened path geometry below the text string.
  • ScaleTextPath (Boolean): if true, the geometry will be scaled to fit the size of the control.

Points of interest

  • Additional optimization of the code is needed to improve performance.
  • Other similar work.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

lneir

Software Developer (Senior)
Skype
United States United States

Member

Follow on Twitter Follow on Twitter
I work in the Bay Area primarily developing software on the Windows platform using C++, .NET/C#, WPF, and Silverlight.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionSilverlight Version of TextOnAPath is different from WPF version PinmemberWaqas ul Islam7:28 20 Sep '11  
AnswerRe: Silverlight Version of TextOnAPath is different from WPF version Pinmemberlneir17:20 25 Sep '11  
Questioni see no text PinmemberGizzly.SGD5:25 28 Oct '10  
GeneralThanks!! PinmemberKevinrow23:18 21 Sep '10  
GeneralGood ... Pinmembervikas amin7:03 3 Dec '09  
GeneralDo this in code [modified] PinmemberSternze23:04 21 Jul '09  
GeneralRe: Do this in code Pinmemberlneir18:53 22 Jul '09  
GeneralRe: Do this in code PinmemberSternze20:58 22 Jul '09  
QuestionFlattenArc returns no points Pinmemberzaheee6:22 8 Jul '09  
AnswerRe: FlattenArc returns no points Pinmemberlneir18:52 8 Jul '09  
GeneralRe: FlattenArc returns no points Pinmemberzaheee13:28 12 Jul '09  
GeneralRe: FlattenArc returns no points Pinmembergantww17:42 30 Sep '09  
GeneralRe: FlattenArc returns no points Pinmembergantww17:44 30 Sep '09  
Generaltype conversion exceptions PinmemberMike Hodnick8:17 25 Feb '09  
GeneralRe: type conversion exceptions Pinmemberlneir11:40 28 Feb '09  
QuestionTextOnAPath and Path not overlapping Pinmembertherabyte9:51 7 Jan '09  
AnswerRe: TextOnAPath and Path not overlapping Pinmemberlneir20:36 8 Jan '09  
GeneralRe: TextOnAPath and Path not overlapping Pinmemberlneir20:51 8 Jan '09  
GeneralLiked it!!!! PinmemberMember 469278910:42 8 Nov '08  
GeneralRe: Liked it!!!! Pinmemberlneir11:50 9 Nov '08  
GeneralThanks PinmemberSiavash Mortazavi23:01 3 Nov '08  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120209.1 | Last Updated 27 Oct 2008
Article Copyright 2008 by lneir
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid