up vote 8 down vote favorite
3
share [g+] share [fb]

I wish to load and use a font to a desktop application in C#. It's that possible without installing the font on the system?

It's a kind of question like this but not from a DLL. I want to load from font file.

link|improve this question

74% accept rate
feedback

2 Answers

up vote 7 down vote accepted

There's a class System.Drawing.Text.PrivateFontCollection in System.Drawing.dll which can manage fonts on a per application basis.

All you do is that you maintain this collection within your app and you add fonts through AddFontFile or AddMemoryFont and you'll then be able to use that font as if it was installed on your system.

It's like installing the font for the application only. The font will be uninstalled once the process terminates.

link|improve this answer
1  
I think you have to keep a hold of your private font collection so that it doesn't get garbage collected. I kept getting an exception when I tried to draw using a Font object I build using data from my font collection. I figured once I had my font I didn't care about the collection, right? Apparently not. Just keep a reference to the font collection as long as you need the font. That worked for me at least. – Jon Turner Mar 12 '10 at 23:53
Ah, subtle, but true, I guess the GDI+ wrapper won't track those fonts for you, it gets collected while GDI+ has references to those fonts internally, and naturally it has no way of knowing that the handles are now invalid/released. The backside of Win32 introp. – John Leidegren Mar 14 '10 at 16:06
feedback

http://blog.andreloker.de/post/2008/07/03/Load-a-font-from-disk-stream-or-byte-array.aspx

Try this...

The blog describes how to use the FontCollection classes.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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