tags:

views:

109

answers:

1

I am converting some Java code to C#. This code is using getGlyphOutline from GlyphVector. Any idea if there an equivalent in C# or .NET?

+3  A: 

You will have to use P/Invoke, see GetGlyphOutline (gdi32)

Henk Holterman