如何从.ttf文件导入字体

时间:2014-08-24 10:35:17

标签: c# string fonts graphic drawstring

我使用的是Graphics.DrawString,我不想将Arial用于我的字体,但我不知道如何使用/从文件中导入一个。这是我的代码。

using (Font myFont = new Font("Arial", 14))
{
    Graphics.DrawString("Hello", myFont, Brushes.Black, new Point(2, 2));
}

我正在使用.ttf文件。

1 个答案:

答案 0 :(得分:1)

MSDN文档How to: Create a Private Font Collection包含一个代码示例,说明如何使用PrivateFontCollection类加载和使用自定义字体。