How can we get path of particular string? I just found out that CTFontCreatePathForGlyph will give CGPathRef , but its will be the outline of text . for example the letter 'O' the path i get from the above method is like a circle with in a circle .. See how we draw the letter 'O' is just one circle. I hope that the above details are enough for to understand my problem.let me know any updates

I need this text path for showing a text drawing animation..

UPDATE please see the below image.(1) shows what i get now..but i need the path like shown in (2)

please see the below image.(1) shows what i get now..but i need the path like shown in (2)

link|improve this question

64% accept rate
do you have find the answer about it? – Allen.Qu Apr 5 at 6:33
No I couldn't find a solution – Rajesh Apr 5 at 14:42
feedback

1 Answer

Any Bezier path, including that one you get from the glyphs, is just a series of connected Bezier curves. What you see on the screen is the result of rendering the path by CGContext. The path can be stroked, in this case you will see just the outline.

Also it can be filled, in this case the internal regions are filled with colour or pattern. Use CGContextFillPath() to fill your path with colour. Winding rules define how to fill the path if it has intersecting zones.

link|improve this answer
if i use CGContextFillPath() it is will jus fill the letter, not giving the exact path of letters.as mentioned in my question i need this because of showing the drawing animation..any idea how it would be possible ? – Rajesh Sep 14 '11 at 9:16
Do you need one path for the whole string? Please elaborate a bit more. – Davyd Sep 14 '11 at 10:21
ya one path. for eg: int the case of letter 'O' , i need the path like single circle/ellipse .. – Rajesh Sep 14 '11 at 10:34
Maybe the path made with glyphs is not the best solution for your task. You always can construct any custom path using curves and lines: CGContextAddArc(), CGContextAddLines(), etc. – Davyd Sep 14 '11 at 11:50
but its is not a good method (not possible) to create entire string using CGContextAddArc(), CGContextAddLines(), etc – Rajesh Sep 14 '11 at 12:03
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.