3
votes
Is there a way to programatically determine if a font file has a specific Unicode Glyph?
Here's a pass at it using c# and the windows api.
[DllImport("gdi32.dll")]
public static extern uint GetFontUnicodeRanges(IntPtr hdc, IntPtr lpgs);
[DllImport("gdi32.dll")]
public …
