从文件中使用字体绘制文本不工作

本文关键字:体绘制 文本 工作 字体 文件 | 更新日期: 2023-09-27 17:52:42

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

所有的例子我发现它看起来很简单。只需使用PrivateFontCollection加载,然后从它创建一个字体。

下面我的简单类来测试它。

只有在我安装字体时才能工作。如果不是,文本将在对话框预览中打印,使用某种默认字体。我检查了字体是否正确加载。我错过了什么?谢谢你的帮助。

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;
    }      
}

从文件中使用字体绘制文本不工作

try this

 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;
}