vote up 1 vote down star

I need to display a file that comes from a mac on a Windows machine.

The font name in the mac file is "Helvetica".

Windows does not have Helvetica but it has "Arial" which is the close. However, if I pass "Helvetica" to a WPF control the font family is ignored.

How can I get programmatically the closest font from "Helvetica" on Windows?

flag

64% accept rate
What do you mean by "the mapping"? Generally, you have to do this yourself. For example, see Word's fint substitution dialog, or the fallback process used by CSS font-family. – kdgregory Jul 11 at 0:21
1  
The "standard three" are Helvetica (Mac) -> Arial (Windows); Times -> Times New Roman, and Courier -> Courier New – kdgregory Jul 11 at 0:22

1 Answer

vote up 0 vote down

They are actually different fonts, though the difference is subtle. Talk to any obsessed graphic designer and he or she will probably start ranting about Arial's inferiority. Hell, they even made a movie out of it.

http://www.helveticafilm.com/

So that's why there's no "mapping". Because they're just plain different. You'll have to come up with your own way of choosing which font you want to use (that is, you'll have to detect what you have and then use what you get from the OS).

link|flag
How do I get the closest font then? Office knows how to display Helvetica even though it's not on the machine. – tom7 Jul 11 at 0:35
For portability, Word documents and PDFs usually contain copies of all the used glyphs for all the fonts in the document. But not in a form that you can legally extract and use. – andrew Jul 11 at 0:43
3  
I believe Word maintains a list of common fonts and how it will substitute them should one not be available. That is most likely what you will have to do in your program. melbpc.org.au/pcupdate/2310/… – Dave Markle Jul 11 at 0:46

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.