如何在C#应用程序中嵌入字体? (使用Visual Studio 2005)

时间:2009-04-07 18:36:26

标签: c# fonts

在我正在开发的应用程序中嵌入truetype字体的最佳方法是什么?基本上我想确保在我的应用程序安装在另一台机器上时可以使用特定字体。我有* .ttf字体文件,只需要一种嵌入方式或在应用程序运行时自动安装它。

我是否需要设置安装程序以在安装期间安装字体,还是可以在应用程序运行期间动态加载字体?事实上两者都很高兴知道。

使用.NET 2.0在C#中开发应用程序。

4 个答案:

答案 0 :(得分:15)

blog post可以帮到你。

基本上,您将字体添加为嵌入式资源,然后将其加载到PrivateFontCollection对象中。

答案 1 :(得分: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);
}

以及他们的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);
            }
        }
    }
}

答案 2 :(得分:11)

比这看起来容易;您可以将字体作为资源嵌入到应用程序中,并将其作为应用程序的“属性”命名空间中的强类型属性进行访问。但是给定的链接应该是一个很好的起点。


对于VB禁用:

Add the font as a resource in your application.调用资源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
    }
}

最后一点。 PFC将字体存储为GDI +字体。这些与某些表单控件不兼容。来自文档:

  

使用内存字体,文本在   必须使用GDI +呈现控件。   使用   SetCompatibleTextRenderingDefault   传递true的方法,设置GDI +   在应用程序上呈现,或者在   个人控制通过设置   控制的UseCompatibleTextRendering   财产到真。有些控件不能   用GDI +渲染。

答案 3 :(得分:-2)

它可能不是最好的方法,但你不能只用你的资源包含字体然后将它复制到windows目录上的字体文件夹中吗?