I'm aware of the GlyphTypeface.GetGlyphOutline() in WPF but what I need is to get a center-vector of each glyph, like the lines you draw with a pencil. Is this possible somehow using the existing glyph's of a fontface?

link|improve this question

54% accept rate
feedback

1 Answer

up vote 1 down vote accepted

You could take the glyph polygon and produce the so called Straight Skeleton of the polygon.

http://en.wikipedia.org/wiki/Straight_skeleton

For an algorithm, see e.g (Felkel 1998)

http://www.dma.fi.upm.es/mabellanas/tfcs/skeleton/html/documentacion/straight%20skeletons%20implementation.pdf

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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