在我正在开发的应用程序中嵌入truetype字体的最佳方法是什么?基本上我想确保在我的应用程序安装在另一台机器上时可以使用特定字体.我有*.ttf字体文件,只需要一种嵌入方式或在应用程序运行时自动安装它.
我是否需要设置安装程序以在安装期间安装字体,还是可以在应用程序运行期间动态加载字体?事实上两者都很高兴知道.
该应用程序是使用.NET 2.0在C#中开发的.
Chr*_*ett 12
这是Will的答案,翻译成C#(未经测试):
PrivateFontCollection pfc = new PrivateFontCollection();
using (Stream fontStream = GetType().Assembly.GetManifestResourceStream("Alphd___.ttf"))
{
if (null == fontStream)
{
return;
}
int fontStreamLength = (int) fontStream.Length;
IntPtr data = Marshal.AllocCoTaskMem(fontStreamLength);
byte[] fontData = new byte[fontStreamLength];
fontStream.Read(fontData, 0, fontStreamLength);
Marshal.Copy(fontData, 0, data, fontStreamLength);
pfc.AddMemoryFont(data, fontStreamLength);
Marshal.FreeCoTaskMem(data);
}
Run Code Online (Sandbox Code Playgroud)
以及他们的Paint()方法:
protected void Form1_Paint(object sender, PaintEventArgs e)
{
bool bold = false;
bool italic = false;
e.Graphics.PageUnit = GraphicsUnit.Point;
using (SolidBrush b = new SolidBrush(Color.Black))
{
int y = 5;
foreach (FontFamily fontFamily in pfc.Families)
{
if (fontFamily.IsStyleAvailable(FontStyle.Regular))
{
using (Font font = new Font(fontFamily, 32, FontStyle.Regular))
{
e.Graphics.DrawString(font.Name, font, b, 5, y, StringFormat.GenericTypographic);
}
y += 40;
}
if (fontFamily.IsStyleAvailable(FontStyle.Bold))
{
bold = true;
using (Font font = new Font(fontFamily, 32, FontStyle.Bold))
{
e.Graphics.DrawString(font.Name, font, b, 5, y, StringFormat.GenericTypographic);
}
y += 40;
}
if (fontFamily.IsStyleAvailable(FontStyle.Italic))
{
italic = true;
using (Font font = new Font(fontFamily, 32, FontStyle.Italic))
{
e.Graphics.DrawString(font.Name, font, b, 5, y, StringFormat.GenericTypographic);
}
y += 40;
}
if(bold && italic)
{
using(Font font = new Font(fontFamily, 32, FontStyle.Bold | FontStyle.Italic))
{
e.Graphics.DrawString(font.Name, font, b, 5, y, StringFormat.GenericTypographic);
}
y += 40;
}
using (Font font = new Font(fontFamily, 32, FontStyle.Underline))
{
e.Graphics.DrawString(font.Name, font, b, 5, y, StringFormat.GenericTypographic);
y += 40;
}
using (Font font = new Font(fontFamily, 32, FontStyle.Strikeout))
{
e.Graphics.DrawString(font.Name, font, b, 5, y, StringFormat.GenericTypographic);
}
}
}
}
Run Code Online (Sandbox Code Playgroud)
小智 11
它似乎比这更容易; 您可以将字体作为资源嵌入到应用程序中,并将其作为应用程序的"属性"命名空间中的强类型属性进行访问.但是给定的链接应该是一个很好的起点.
对于VB禁用:
将字体添加为应用程序中的资源. 调用资源MyFontLol.您可以从Properties.Resources.MyFontLol访问此资源(作为字节数组).
我没有测试过以下内容,但似乎可行:
public void LoadMyFontLolKThx()
{
// get our font and wrap it in a memory stream
byte[] myFont = Properties.Resources.MyFontLol;
using (var ms = new MemoryStream(myFont))
{
// used to store our font and make it available in our app
PrivateFontCollection pfc = new PrivateFontCollection();
// The next call requires a pointer to our memory font
// I'm doing it this way; not sure what best practice is
GCHandle handle = GCHandle.Alloc(ms, GCHandleType.Pinned);
// If Length > int.MaxValue this will throw
checked
{
pfc.AddMemoryFont(
handle.AddrOfPinnedObject(), (int)ms.Length);
}
var font = new Font(pfc.Families[0],12);
// use your font here
}
}
Run Code Online (Sandbox Code Playgroud)
最后一点.PFC将字体存储为GDI +字体.这些与某些表单控件不兼容.来自文档:
要使用内存字体,必须使用GDI +呈现控件上的文本.使用 SetCompatibleTextRenderingDefault 方法,传递true,通过将控件的UseCompatibleTextRendering 属性设置为true,在应用程序或单个控件上设置GDI +呈现.某些控件无法使用GDI +呈现.