Tagged Questions

7
votes
1answer
771 views

Loading Fonts for Glyphs in Silverlight

Is it possible to load a font at runtime in Silverlight for the Glyphs object. I've tried all sorts -I've set the fonturi to a web location at runtime - no joy -I've tried the same approach as ...
4
votes
6answers
681 views

Windows font that clearly disambiguates the number ZERO from letter O

Our intranet web pages need to clearly disambiguate between the letter O and the number ZERO. Is there a screen+printer font that is installed on WindowsXP and Vista that does this either putting a ...
3
votes
1answer
123 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:
3
votes
1answer
78 views

Fonts and character encodings

a) Do fonts know anything about coded character sets (Unicode, ASCII, etc.)? In other words, does a font file specify which coded character sets may use the font? b) I assume if a font supports ...
3
votes
2answers
526 views

What's the unicode glyph used to indicate combining characters?

My application needs to display "orphaned" combining characters. I would like to use the same format as the "official" unicode charts, using the dotted circle placeholder. See, for example: ...
2
votes
0answers
45 views

How do I determine the fallback font for Pango?

I'm rendering some text using pangomm, but the font that I am using doesn't have glyphs for parts of the text (in this case, there is some Japanese mixed in with English). Pango seems to render the ...
1
vote
1answer
144 views

Need help finding specification document for Adobe Type1 binary font file - PFB

I need to read PFB files and extract Glyph information from it. I am unable to find the specification for the specific file. I have the Adobe Type1 font specification. But the PFB file is in binary ...
1
vote
0answers
202 views

CGFont: calculation glyphs bounds

How can I get sizes of each glyph of the string in pixels? I use CGFontGetGlyphBBoxes to get a bounding box of each glyph in string and get following values: 2011-04-18 15:34:56.809 ...
1
vote
1answer
66 views

rendering true type fonts for non-latin scripts

I am working on this project for LED displays which have to support multiple Indian languages to support the poorest of people in India ti display their entitlements to free food rations and kerosene ...
1
vote
1answer
524 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 ...
1
vote
1answer
154 views

Where can I find a good introduction to fonts

I have to write some code working with fonts. Is there a good introduction to the subject to get me started?
1
vote
2answers
411 views

Windows: Getting glyph outlines for substitution characters from other fonts

I need to render fonts into a 3d game world, so I use the GetGlyphOutline outline function to get the glyph shapes to render into a texture. However, I want to be able to handle the case where ...
0
votes
0answers
5 views

Memory leak in Font Glyph / UIWebView

I just found that when UIwebview get dealloc-ed, most of the memory it used doesn't get totally recycled. After doing some profile, i found most of the still alive memory are Font glyph cache(the ...
0
votes
0answers
16 views

How to change/overwrite character to glyph mappings in OS X?

(In OS X) I'd like to change the way a given character is mapped to a font glyph, for a specific font. I understand that the heavy-handed solution would be to edit the font file and change the cmap ...
0
votes
0answers
44 views

What code is being used here for use with fonts and glyphs?

I was looking through some of the files used in Vexflow and I'm trying to add new glyphs for the score however, I don't know what code is being used here in the vex.flow.font.js file: Vex.Flow.Font = ...
0
votes
0answers
35 views

How get glyph size in Quartz2D?

Is any method for getting specific glyph size in Quartz2D for iPhone?
0
votes
2answers
373 views

Extract Font Glyphs

I have this problem across my mind, any help will be appreciated. Is there are PHP function, or library that can extract some glyphs form a font file? Edit: By means to extract some glyphs, I wanted ...
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 ...