Tagged Questions

3
votes
1answer
124 views

Get single glyph metrics (.net)

How can I get full information about single glyph from choosen font (for example Arial -> symbol "A") This picture describe what variables I need to find:
1
vote
1answer
99 views

How to get a glyph as vectors

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 ...
1
vote
1answer
525 views

C#: Check for unsupported characters/glyphs in a font

I am working on a translation software add in (C#, .NET 2.0) which displays translated texts in a emulated device display. I have to check if all translated texts could be displayed with specified ...
0
votes
1answer
194 views

C#/.NET/Mono: Glyph/typeface info without WPF?

Is there any way to retrieve the same info available in this class, but without relying on WPF? My app needs to run under Mono, which doesn't currently implement this. (Ideally, the alternative ...
0
votes
1answer
117 views

Detecting glyphs occurrences in any fonts

I'm writing a small .NET application that can produce SWF files, and I need to support Unicode fonts. I don't know the things on it and font rendering well, so I understand that I've made some ...