up vote 1 down vote favorite
1
share [g+] share [fb]

This is probably noob territory but what the heck:

I want to embed fonts in my winforms application so that I don't have to worry about them being installed on the machine. I've searched a bit on the MSDN site and found a few hints about using native Windows API calls, for instance Michael Caplans (sp?) tutorial linked to by Scott Hanselman. Now, do I really have to go through all that trouble? Can't I just use the resource part of my app?

If not I'll probably go the installing route. In that case, can I do that programmatically? By just copying the font file to the Windows\Fonts folder?

Edit: I am aware of licencing issues, thanks for the concern though.

link|improve this question

68% accept rate
feedback

4 Answers

You can do that, Refer following...

http://dotnet-coding-helpercs.blogspot.com

link|improve this answer
Just wanted to make a note for those using VB.NET - you won't find unsafe and fixed commands in it. But, you can refer to this method at PInvoke: pinvoke.net/default.aspx/gdi32/AddFontMemResourceEx.html – Witchunter Jun 1 '11 at 14:54
feedback

You could do that, but also be aware that like software fonts too have licenses and you need to ensure that you are not violating any licenses that prohibit embedding and deployment.

link|improve this answer
feedback

Can't I just use the resource part of my app?

Yes, but need to be native resources rather than .NET resources (i.e. using rc.exe, the native resource compiler).

link|improve this answer
feedback
// specify embedded resource name
string resource = "embedded_font.PAGAP___.TTF";

// receive resource stream
Stream fontStream = Assembly.GetExecutingAssembly().GetManifestResourceStream(resource);

// create an unsafe memory block for the font data
System.IntPtr data = Marshal.AllocCoTaskMem((int)fontStream.Length);

// create a buffer to read in to
byte[] fontdata = new byte[fontStream.Length];

// read the font data from the resource
fontStream.Read(fontdata, 0, (int)fontStream.Length);

// copy the bytes to the unsafe memory block
Marshal.Copy(fontdata, 0, data, (int)fontStream.Length);

// pass the font to the font collection
private_fonts.AddMemoryFont(data, (int)fontStream.Length);

// close the resource stream
fontStream.Close();

// free up the unsafe memory
Marshal.FreeCoTaskMem(data);

Download full sample from blog article.

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.