我正在尝试使用System.Drawing.Text.PrivateFontCollection加载专用字体。 目标是不必在系统上安装字体。

我发现的所有示例看起来都非常简单。只需使用PrivateFontCollection加载,然后从中创建字体即可。

在我的简单类(class)下面对其进行测试。

它仅在我安装字体时才有效。否则,将使用某些默认字体在对话框预览中打印文本。我检查了字体是否正确加载。
我想念的是什么?感谢您的帮助。

public partial class Test : Form
{
    private PrintDocument printDocument1 = new PrintDocument();
    System.Drawing.Text.PrivateFontCollection privateFonts;
    private Font _barCodeFont;

    public Test()
    {
        InitializeComponent();
    }
    private void Test_Load(object sender, EventArgs e)
    {
        privateFonts = new System.Drawing.Text.PrivateFontCollection();
        privateFonts.AddFontFile("Code128.ttf");
    }

    private void btbTest_Click(object sender, EventArgs e)
    {
        PrintDocument pd = new PrintDocument();

        pd.PrintPage += new PrintPageEventHandler(this.pd_PrintPage);
        pd.DocumentName = "Label";

        PrintPreviewDialog pp = new PrintPreviewDialog();
        pp.Document = pd;
        pp.WindowState = FormWindowState.Normal;
        pp.ShowDialog();

    }
    private void pd_PrintPage(object sender, PrintPageEventArgs ev)
    {
        _barCodeFont = new Font(privateFonts.Families[0], 12, FontStyle.Regular);
        ev.Graphics.DrawString("Should Be a bar code", _barCodeFont, Brushes.Black, 0, 0);
        ev.HasMorePages = false;
    }
}

最佳答案

试试这个

 private void pd_PrintPage(object sender, PrintPageEventArgs ev)
{
    Font _barCodeFont = new Font(privateFonts.Families[0], 12, FontStyle.Regular);
    ev.Graphics.DrawString("Should Be a bar code", _barCodeFont, Brushes.Black, 0, 0);
    ev.HasMorePages = false;
}

并删除私有(private)Font _barCodeFont;

关于c# - 使用文件中的字体绘制文本不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22618745/

10-17 02:23