C# and Glyph
-
Hi, Does anyone have any ideas how i can get at the glyph outline of truetype font characters? I know in c++ i can use structures like glyphmetrics etc but am trying to find a way in c#, if its possible??? Any help would be good Adam
-
Hi, Does anyone have any ideas how i can get at the glyph outline of truetype font characters? I know in c++ i can use structures like glyphmetrics etc but am trying to find a way in c#, if its possible??? Any help would be good Adam
(6 years after you asked) here's a solution. At the time GetGlyphOutline was not directly accessible through .NET. However, since .NET 3.0 and 3.5 the function has been added. You can now use it directly from you C# or VB code, but note that the method is not CLS compliant (as Microsoft states): http://msdn.microsoft.com/en-us/library/system.windows.media.glyphtypeface.getglyphoutline.aspx[^] -- Abel --